Skip to content

Commit 36232dc

Browse files
committed
rewrite to avoid build failure on linux CI
1 parent 0743c14 commit 36232dc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/gtest/lattices.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,8 @@ TEST(InvertedLattice, Meet) {
189189
}
190190

191191
TEST(InvertedLattice, DoubleInverted) {
192-
analysis::Inverted<analysis::Inverted<analysis::Bool>> identity(
193-
analysis::Inverted{analysis::Bool{}});
192+
using DoubleInverted = analysis::Inverted<analysis::Inverted<analysis::Bool>>;
193+
DoubleInverted identity(analysis::Inverted<analysis::Bool>{analysis::Bool{}});
194194
EXPECT_FALSE(identity.getBottom());
195195
EXPECT_TRUE(identity.getTop());
196196
}

0 commit comments

Comments
 (0)