CommandLineInterface: Rename m_error to m_outputFailed

This commit is contained in:
Kamil Śliwak
2021-10-12 18:23:16 +02:00
parent 59d8f50518
commit a5ed732fd3
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -121,7 +121,7 @@ private:
std::ostream& m_sout;
std::ostream& m_serr;
bool m_hasOutput = false;
bool m_error = false; ///< If true, some error occurred.
bool m_outputFailed = false; ///< If true, creation or write to some of the output files failed.
FileReader m_fileReader;
std::optional<std::string> m_standardJsonInput;
std::unique_ptr<frontend::CompilerStack> m_compiler;