diff options
Diffstat (limited to 'test/example')
-rw-r--r-- | test/example/stack-utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/example/stack-utils.cpp b/test/example/stack-utils.cpp index f8824e5cb..e393e13e3 100644 --- a/test/example/stack-utils.cpp +++ b/test/example/stack-utils.cpp @@ -24,7 +24,7 @@ void test_remove_nops() { builder.makeNop(), builder.makeNop(), }, - {Type::i32, Type::i64}); + Type{Type::i32, Type::i64}); std::cout << *block << '\n'; StackUtils::removeNops(block); std::cout << *block << '\n'; |