aaron.ballman added a comment. I'm not opposed to the changes here, but I am wondering what the benefits are to splitting this off into its own function?
================ Comment at: clang-query/tool/ClangQuery.cpp:61 +int runCommandsInFile(const char* exeName, std::string const& fileName, QuerySession& QS) +{ ---------------- aaron.ballman wrote: > You should run your patch through clang-format to properly format only the > parts that you've changed. Also, it should be `ExeName` and `FileName` per > the coding standard. I think this function should return a `bool` instead of an `int`. The caller can decide how to translate failure into a return code. ================ Comment at: clang-query/tool/ClangQuery.cpp:61-62 +int runCommandsInFile(const char* exeName, std::string const& fileName, QuerySession& QS) +{ + std::ifstream Input(fileName.c_str()); ---------------- You should run your patch through clang-format to properly format only the parts that you've changed. Also, it should be `ExeName` and `FileName` per the coding standard. Repository: rCTE Clang Tools Extra https://reviews.llvm.org/D51260 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits