Skip to content

Commit

Permalink
Fix [-Werror,-Wsign-compare] error. NFC.
Browse files Browse the repository at this point in the history
  • Loading branch information
bzEq committed Aug 24, 2023
1 parent 4468103 commit 09ccc55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clang/unittests/Analysis/FlowSensitive/TransferTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5621,7 +5621,7 @@ TEST(TransferTest, MemberOperatorCallModelsPointerForCallee) {
auto Matches = match(
traverse(TK_AsIs, cxxOperatorCallExpr().bind("call")), ASTCtx);

ASSERT_EQ(Matches.size(), 2);
ASSERT_EQ(Matches.size(), 2UL);

auto *Call1 = Matches[0].getNodeAs<CXXOperatorCallExpr>("call");
auto *Call2 = Matches[1].getNodeAs<CXXOperatorCallExpr>("call");
Expand Down

0 comments on commit 09ccc55

Please sign in to comment.