diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2009-07-21 00:05:10 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2009-07-21 00:05:10 +0000 |
commit | 153d418def535cd5419d81cf1f61d78783a29016 (patch) | |
tree | 1e7e4154e5892def781b5614111e17cb6f53fafd /clang/tools/index-test/index-test.cpp | |
parent | 34392625861be48685dc54eedc06fe3f48f7738f (diff) | |
download | bcm5719-llvm-153d418def535cd5419d81cf1f61d78783a29016.tar.gz bcm5719-llvm-153d418def535cd5419d81cf1f61d78783a29016.zip |
Add '\n' to the end of error message.
llvm-svn: 76506
Diffstat (limited to 'clang/tools/index-test/index-test.cpp')
-rw-r--r-- | clang/tools/index-test/index-test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/tools/index-test/index-test.cpp b/clang/tools/index-test/index-test.cpp index 9f02c2284fd..8fd871d08cb 100644 --- a/clang/tools/index-test/index-test.cpp +++ b/clang/tools/index-test/index-test.cpp @@ -146,7 +146,7 @@ static void ProcessASTLocation(ASTLocation ASTLoc, IndexProvider &IdxProvider) { Decl *D = ASTLoc.getReferencedDecl(); if (D == 0) { - llvm::errs() << "Error: Couldn't get a referenced Decl for the ASTLocation"; + llvm::errs() << "Error: Couldn't get referenced Decl for the ASTLocation\n"; HadErrors = true; return; } |