Skip to content

Commit 7044870

Browse files
authored
Prevent triggering compliance checker on 'backdoor' (#3496)
1 parent 5c19bc2 commit 7044870

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Firestore/core/test/firebase/firestore/util/delayed_constructor_test.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ TEST(DelayedConstructorTest, CopyableType) {
6969
constructed += 1;
7070
}
7171

72-
// Backdoor to construct a value without exposing a default constructor
72+
// Constructs the value without exposing a default constructor
7373
explicit Copyable(int) {
7474
}
7575
};
@@ -90,7 +90,7 @@ TEST(DelayedConstructorTest, MoveOnlyType) {
9090
constructed += 1;
9191
}
9292

93-
// Backdoor to construct a value without exposing a default constructor
93+
// Constructs the value without exposing a default constructor
9494
explicit MoveOnly(int) {
9595
}
9696
};

0 commit comments

Comments
 (0)