diff options
author | Manuel Klimek <klimek@google.com> | 2015-08-13 09:09:28 +0000 |
---|---|---|
committer | Manuel Klimek <klimek@google.com> | 2015-08-13 09:09:28 +0000 |
commit | 0a19e90b49e699b3a8ff573761dd1f447d0e2160 (patch) | |
tree | 5e625d3b0ce8b4ec58fe5d87561f968e87440110 /clang-tools-extra/unittests | |
parent | 4778e410d0b33dc6f5837683ccd0e439a9b69d9e (diff) | |
download | bcm5719-llvm-0a19e90b49e699b3a8ff573761dd1f447d0e2160.tar.gz bcm5719-llvm-0a19e90b49e699b3a8ff573761dd1f447d0e2160.zip |
Fix formatting.
llvm-svn: 244876
Diffstat (limited to 'clang-tools-extra/unittests')
-rw-r--r-- | clang-tools-extra/unittests/clang-tidy/ClangTidyTest.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/unittests/clang-tidy/ClangTidyTest.h b/clang-tools-extra/unittests/clang-tidy/ClangTidyTest.h index 62f45bc1bee..fb5e43a0b99 100644 --- a/clang-tools-extra/unittests/clang-tidy/ClangTidyTest.h +++ b/clang-tools-extra/unittests/clang-tidy/ClangTidyTest.h @@ -78,7 +78,7 @@ runCheckOnCode(StringRef Code, std::vector<ClangTidyError> *Errors = nullptr, Invocation.setDiagnosticConsumer(&DiagConsumer); if (!Invocation.run()) { std::string ErrorText; - for (const auto &Error:Context.getErrors()) { + for (const auto &Error : Context.getErrors()) { ErrorText += Error.Message.Message + "\n"; } llvm::report_fatal_error(ErrorText); |