forked from OSchip/llvm-project
[clang-tidy] Fix message style (capitalization, trailing period).
llvm-svn: 252471
This commit is contained in:
parent
570100b306
commit
301130ef7c
|
@ -152,9 +152,8 @@ void ContainerSizeEmptyCheck::check(const MatchFinder::MatchResult &Result) {
|
|||
Hint = FixItHint::CreateReplacement(MemberCall->getSourceRange(),
|
||||
"!" + ReplacementText);
|
||||
}
|
||||
diag(MemberCall->getLocStart(),
|
||||
"The 'empty' method should be used to check for emptiness instead "
|
||||
"of 'size'.")
|
||||
diag(MemberCall->getLocStart(), "the 'empty' method should be used to check "
|
||||
"for emptiness instead of 'size'")
|
||||
<< Hint;
|
||||
}
|
||||
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue