forked from OSchip/llvm-project
[ASTImporter] Changed constant int to unsigned int in test code.
llvm-svn: 337172
This commit is contained in:
parent
738a6e449e
commit
2f752baa2e
|
@ -2378,7 +2378,7 @@ private:
|
|||
auto *ToClass = FirstDeclMatcher<CXXRecordDecl>().match(
|
||||
ToTU, ClassMatcher);
|
||||
|
||||
ASSERT_EQ(DeclCounter<CXXMethodDecl>().match(ToClass, MethodMatcher), 1);
|
||||
ASSERT_EQ(DeclCounter<CXXMethodDecl>().match(ToClass, MethodMatcher), 1u);
|
||||
|
||||
{
|
||||
CXXMethodDecl *Method =
|
||||
|
@ -2386,7 +2386,7 @@ private:
|
|||
ToClass->removeDecl(Method);
|
||||
}
|
||||
|
||||
ASSERT_EQ(DeclCounter<CXXMethodDecl>().match(ToClass, MethodMatcher), 0);
|
||||
ASSERT_EQ(DeclCounter<CXXMethodDecl>().match(ToClass, MethodMatcher), 0u);
|
||||
|
||||
Decl *ImportedClass = nullptr;
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue