Fixing the command line for a test and switching from tabs to spaces.

llvm-svn: 315059
This commit is contained in:
Aaron Ballman 2017-10-06 13:14:28 +00:00
parent d12c189e2e
commit 4107c00859
1 changed files with 4 additions and 6 deletions

View File

@ -1,12 +1,10 @@
// RUN: %check_clang_tidy %s google-readability-namespace-comments %t -- -std=c++17
// RUN: %check_clang_tidy %s google-readability-namespace-comments %t -- -- -std=c++17
namespace n1::n2 {
namespace n3 {
// So that namespace is not empty.
void f();
// So that namespace is not empty.
void f();
// CHECK-MESSAGES: :[[@LINE+4]]:2: warning: namespace 'n3' not terminated with
// CHECK-MESSAGES: :[[@LINE-7]]:11: note: namespace 'n3' starts here
// CHECK-MESSAGES: :[[@LINE+2]]:3: warning: namespace 'n1::n2' not terminated with a closing comment [google-readability-namespace-comments]