Skip to content

Commit 1cfb7a6

Browse files
committed
Fix build
1 parent 7ce5c4e commit 1cfb7a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/regressions.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,6 @@ class CopyAndMoveCountFunctor {
298298
};
299299

300300
TEST(regression_tests, no_extra_move_during_construction) {
301-
fu2::function<int()> f(CopyAndMoveCountFunctor{});
301+
fu2::function<std::pair<int, int>()> f(CopyAndMoveCountFunctor{});
302302
ASSERT_EQ(f(), std::make_pair(0, 1));
303303
}

0 commit comments

Comments
 (0)