Fix #1333: Protect against -g for non-generating code.

This commit is contained in:
John Kessenich
2018-04-05 19:00:01 -06:00
parent a89f8cf76b
commit 7f0bcfd8d8
2 changed files with 4 additions and 1 deletions

View File

@@ -619,7 +619,7 @@ public:
return semanticNameSet.insert(name).first->c_str();
}
void setSourceFile(const char* file) { sourceFile = file; }
void setSourceFile(const char* file) { if (file != nullptr) sourceFile = file; }
const std::string& getSourceFile() const { return sourceFile; }
void addSourceText(const char* text) { sourceText = sourceText + text; }
const std::string& getSourceText() const { return sourceText; }