diff options
author | Alexander Kornienko <alexfh@google.com> | 2015-11-09 15:53:28 +0000 |
---|---|---|
committer | Alexander Kornienko <alexfh@google.com> | 2015-11-09 15:53:28 +0000 |
commit | 301130ef7cc5f2150e7babfaffd3b3366bf6481c (patch) | |
tree | 0e4317dd9f9df8a80f1e7b335980ad474b6144ea /clang-tools-extra/test/clang-tidy/readability-container-size-empty.cpp | |
parent | 570100b306c863685287f742f7cd15e314eed5ee (diff) | |
download | bcm5719-llvm-301130ef7cc5f2150e7babfaffd3b3366bf6481c.tar.gz bcm5719-llvm-301130ef7cc5f2150e7babfaffd3b3366bf6481c.zip |
[clang-tidy] Fix message style (capitalization, trailing period).
llvm-svn: 252471
Diffstat (limited to 'clang-tools-extra/test/clang-tidy/readability-container-size-empty.cpp')
-rw-r--r-- | clang-tools-extra/test/clang-tidy/readability-container-size-empty.cpp | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/clang-tools-extra/test/clang-tidy/readability-container-size-empty.cpp b/clang-tools-extra/test/clang-tidy/readability-container-size-empty.cpp index 9dea5dc8c17..652c114a281 100644 --- a/clang-tools-extra/test/clang-tidy/readability-container-size-empty.cpp +++ b/clang-tools-extra/test/clang-tidy/readability-container-size-empty.cpp @@ -12,51 +12,51 @@ int main() { std::vector<int> vect; if (vect.size() == 0) ; - // CHECK-MESSAGES: :[[@LINE-2]]:7: warning: The 'empty' method should be used to check for emptiness instead of 'size'. [readability-container-size-empty] + // CHECK-MESSAGES: :[[@LINE-2]]:7: warning: the 'empty' method should be used to check for emptiness instead of 'size' [readability-container-size-empty] // CHECK-FIXES: {{^ }}if (vect.empty()){{$}} if (vect.size() != 0) ; - // CHECK-MESSAGES: :[[@LINE-2]]:7: warning: The 'empty' method should be used + // CHECK-MESSAGES: :[[@LINE-2]]:7: warning: the 'empty' method should be used // CHECK-FIXES: {{^ }}if (!vect.empty()){{$}} if (0 == vect.size()) ; - // CHECK-MESSAGES: :[[@LINE-2]]:12: warning: The 'empty' method should be used + // CHECK-MESSAGES: :[[@LINE-2]]:12: warning: the 'empty' method should be used // CHECK-FIXES: {{^ }}if (vect.empty()){{$}} if (0 != vect.size()) ; - // CHECK-MESSAGES: :[[@LINE-2]]:12: warning: The 'empty' method should be used + // CHECK-MESSAGES: :[[@LINE-2]]:12: warning: the 'empty' method should be used // CHECK-FIXES: {{^ }}if (!vect.empty()){{$}} if (vect.size() > 0) ; - // CHECK-MESSAGES: :[[@LINE-2]]:7: warning: The 'empty' method should be used + // CHECK-MESSAGES: :[[@LINE-2]]:7: warning: the 'empty' method should be used // CHECK-FIXES: {{^ }}if (!vect.empty()){{$}} if (0 < vect.size()) ; - // CHECK-MESSAGES: :[[@LINE-2]]:11: warning: The 'empty' method should be used + // CHECK-MESSAGES: :[[@LINE-2]]:11: warning: the 'empty' method should be used // CHECK-FIXES: {{^ }}if (!vect.empty()){{$}} if (vect.size() < 1) ; - // CHECK-MESSAGES: :[[@LINE-2]]:7: warning: The 'empty' method should be used + // CHECK-MESSAGES: :[[@LINE-2]]:7: warning: the 'empty' method should be used // CHECK-FIXES: {{^ }}if (vect.empty()){{$}} if (1 > vect.size()) ; - // CHECK-MESSAGES: :[[@LINE-2]]:11: warning: The 'empty' method should be used + // CHECK-MESSAGES: :[[@LINE-2]]:11: warning: the 'empty' method should be used // CHECK-FIXES: {{^ }}if (vect.empty()){{$}} if (vect.size() >= 1) ; - // CHECK-MESSAGES: :[[@LINE-2]]:7: warning: The 'empty' method should be used + // CHECK-MESSAGES: :[[@LINE-2]]:7: warning: the 'empty' method should be used // CHECK-FIXES: {{^ }}if (!vect.empty()){{$}} if (1 <= vect.size()) ; - // CHECK-MESSAGES: :[[@LINE-2]]:12: warning: The 'empty' method should be used + // CHECK-MESSAGES: :[[@LINE-2]]:12: warning: the 'empty' method should be used // CHECK-FIXES: {{^ }}if (!vect.empty()){{$}} if (!vect.size()) ; - // CHECK-MESSAGES: :[[@LINE-2]]:8: warning: The 'empty' method should be used + // CHECK-MESSAGES: :[[@LINE-2]]:8: warning: the 'empty' method should be used // CHECK-FIXES: {{^ }}if (vect.empty()){{$}} if (vect.size()) ; - // CHECK-MESSAGES: :[[@LINE-2]]:7: warning: The 'empty' method should be used + // CHECK-MESSAGES: :[[@LINE-2]]:7: warning: the 'empty' method should be used // CHECK-FIXES: {{^ }}if (!vect.empty()){{$}} if (vect.empty()) @@ -65,13 +65,13 @@ int main() { const std::vector<int> vect2; if (vect2.size() != 0) ; - // CHECK-MESSAGES: :[[@LINE-2]]:7: warning: The 'empty' method should be used + // CHECK-MESSAGES: :[[@LINE-2]]:7: warning: the 'empty' method should be used // CHECK-FIXES: {{^ }}if (!vect2.empty()){{$}} std::vector<int> *vect3 = new std::vector<int>(); if (vect3->size() == 0) ; - // CHECK-MESSAGES: :[[@LINE-2]]:7: warning: The 'empty' method should be used + // CHECK-MESSAGES: :[[@LINE-2]]:7: warning: the 'empty' method should be used // CHECK-FIXES: {{^ }}if (vect3->empty()){{$}} delete vect3; @@ -79,7 +79,7 @@ int main() { const std::vector<int> &vect4 = vect2; if (vect4.size() == 0) ; - // CHECK-MESSAGES: :[[@LINE-2]]:7: warning: The 'empty' method should be used + // CHECK-MESSAGES: :[[@LINE-2]]:7: warning: the 'empty' method should be used // CHECK-FIXES: {{^ }}if (vect4.empty()){{$}} } @@ -90,11 +90,11 @@ template <typename T> void f() { std::vector<T> v; if (v.size()) ; - // CHECK-MESSAGES: :[[@LINE-2]]:7: warning: The 'empty' method should be used + // CHECK-MESSAGES: :[[@LINE-2]]:7: warning: the 'empty' method should be used // CHECK-FIXES: {{^ }}if (!v.empty()){{$}} // CHECK-FIXES-NEXT: ; CHECKSIZE(v); - // CHECK-MESSAGES: :[[@LINE-1]]:13: warning: The 'empty' method should be used + // CHECK-MESSAGES: :[[@LINE-1]]:13: warning: the 'empty' method should be used // CHECK-MESSAGES: CHECKSIZE(v); } |