Remove PCH code: the code related to PCH is dead and not used (#66)

cherry-pick of compute/ec/clr/+/1184122

Co-authored-by: Juan Manuel Martinez Caamaño <juamarti@amd.com>
This commit is contained in:
MartinezFernandez, Juan
2025-03-28 10:36:19 +01:00
committed by GitHub
parent 8d90b44a1b
commit f580632174
4 changed files with 14 additions and 61 deletions
-3
View File
@@ -106,7 +106,6 @@ class Program : public RuntimeObject {
std::vector<std::string> headerNames_;
std::vector<std::string> headers_;
std::vector<std::string> precompiledHeaders_; //!< Precompiled Headers
std::string sourceCode_; //!< Strings that make up the source code
Language language_; //!< Input source language
devicebinary_t binary_; //!< The binary image, provided by the app
@@ -180,8 +179,6 @@ class Program : public RuntimeObject {
//! Append to source code.
void appendToSource(const char* newCode) { sourceCode_.append(newCode); }
void addPreCompiledHeader(const std::string& pch) { precompiledHeaders_.push_back(pch); }
//! Return the program log.
const std::string& programLog() const { return programLog_; }