data: removed storing commandline for errors

* reason: commandline string may be large (7GB for 20k errors in the UnrealEngine)
This commit is contained in:
mlangkabel
2017-12-12 10:04:44 +01:00
parent 4da2b1f8f4
commit 928aa45bfc
17 changed files with 43 additions and 77 deletions
+5 -2
View File
@@ -162,8 +162,11 @@ public:
std::vector<std::string> imports;
private:
virtual void doRecordError(const ParseLocation& location, const std::string& message, const std::string& commandline,
bool fatal, bool indexed) override
virtual void doRecordError(
const ParseLocation& location,
const std::string& message,
bool fatal,
bool indexed) override
{
errors.push_back(addLocationSuffix(message, location));
}