diff options
author | Alexander Kornienko <alexfh@google.com> | 2016-12-13 16:38:45 +0000 |
---|---|---|
committer | Alexander Kornienko <alexfh@google.com> | 2016-12-13 16:38:45 +0000 |
commit | 1647f3855fe517a47704d399a30984004e759e89 (patch) | |
tree | 8265da239a62e2ec7486be06f1d65c24a39e51fa /clang-tools-extra/test/clang-tidy/boost-use-to-string.cpp | |
parent | ebdfb9cf0cea0bd9ae91052b714397569d1c653a (diff) | |
download | bcm5719-llvm-1647f3855fe517a47704d399a30984004e759e89.tar.gz bcm5719-llvm-1647f3855fe517a47704d399a30984004e759e89.zip |
Remove trailing whitespace in docs and clang-tidy sources.
llvm-svn: 289547
Diffstat (limited to 'clang-tools-extra/test/clang-tidy/boost-use-to-string.cpp')
-rw-r--r-- | clang-tools-extra/test/clang-tidy/boost-use-to-string.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/clang-tools-extra/test/clang-tidy/boost-use-to-string.cpp b/clang-tools-extra/test/clang-tidy/boost-use-to-string.cpp index 80736332e60..44ba172c2ff 100644 --- a/clang-tools-extra/test/clang-tidy/boost-use-to-string.cpp +++ b/clang-tools-extra/test/clang-tidy/boost-use-to-string.cpp @@ -27,7 +27,7 @@ void test_to_string1() { // CHECK-FIXES: auto xa = std::to_string(5); auto z = boost::lexical_cast<std::string>(42LL); - // CHECK-MESSAGES: :[[@LINE-1]]:12: warning: use std::to_string + // CHECK-MESSAGES: :[[@LINE-1]]:12: warning: use std::to_string // CHECK-FIXES: auto z = std::to_string(42LL); // this should not trigger @@ -49,22 +49,22 @@ void test_to_string2() { bool j; fun(boost::lexical_cast<std::string>(a)); - // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: use std::to_string + // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: use std::to_string // CHECK-FIXES: fun(std::to_string(a)); fun(boost::lexical_cast<std::string>(b)); - // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: use std::to_string + // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: use std::to_string // CHECK-FIXES: fun(std::to_string(b)); fun(boost::lexical_cast<std::string>(c)); - // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: use std::to_string + // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: use std::to_string // CHECK-FIXES: fun(std::to_string(c)); fun(boost::lexical_cast<std::string>(d)); - // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: use std::to_string + // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: use std::to_string // CHECK-FIXES: fun(std::to_string(d)); fun(boost::lexical_cast<std::string>(e)); - // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: use std::to_string + // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: use std::to_string // CHECK-FIXES: fun(std::to_string(e)); fun(boost::lexical_cast<std::string>(f)); - // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: use std::to_string + // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: use std::to_string // CHECK-FIXES: fun(std::to_string(f)); // No change for floating numbers. @@ -93,19 +93,19 @@ void test_to_wstring() { // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: use std::to_wstring instead of boost::lexical_cast<std::wstring> [boost-use-to-string] // CHECK-FIXES: fun(std::to_wstring(a)); fun(boost::lexical_cast<std::wstring>(b)); - // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: use std::to_wstring + // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: use std::to_wstring // CHECK-FIXES: fun(std::to_wstring(b)); fun(boost::lexical_cast<std::wstring>(c)); - // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: use std::to_wstring + // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: use std::to_wstring // CHECK-FIXES: fun(std::to_wstring(c)); fun(boost::lexical_cast<std::wstring>(d)); - // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: use std::to_wstring + // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: use std::to_wstring // CHECK-FIXES: fun(std::to_wstring(d)); fun(boost::lexical_cast<std::wstring>(e)); - // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: use std::to_wstring + // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: use std::to_wstring // CHECK-FIXES: fun(std::to_wstring(e)); fun(boost::lexical_cast<std::wstring>(f)); - // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: use std::to_wstring + // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: use std::to_wstring // CHECK-FIXES: fun(std::to_wstring(f)); // No change for floating numbers |