Skip to content

Commit 62403de

Browse files
committed
Remove logging
1 parent ec7e051 commit 62403de

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

clang/unittests/Analysis/FlowSensitive/TransferTest.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1481,10 +1481,8 @@ TEST(TransferTest, StructModeledFieldsWithAccessor) {
14811481
getEnvironmentAtAnnotation(Results, "p");
14821482
auto &SLoc = getLocForDecl<RecordStorageLocation>(ASTCtx, Env, "s");
14831483
std::vector<const ValueDecl*> Fields;
1484-
for (auto [Field, _] : SLoc.children()) {
1484+
for (auto [Field, _] : SLoc.children())
14851485
Fields.push_back(Field);
1486-
llvm::dbgs() << Field->getNameAsString() << "\n";
1487-
}
14881486
// Only the fields that have simple accessor methods (that have a
14891487
// single statement body that returns the member variable) should be modeled.
14901488
ASSERT_THAT(Fields, UnorderedElementsAre(

0 commit comments

Comments
 (0)