Commit f45728a5 by Gennadiy Civil

more OSX pizzas

parent b74a1af0
......@@ -1541,7 +1541,8 @@ TEST(FunctorActionTest, UnusedArguments) {
// Verify that users can ignore uninteresting arguments.
Action<int(int, double y, const int&)> a =
[](int i, Unused, Unused) { return 2 * i; };
tuple<int, double, const int&> dummy = make_tuple(3, 7.3, 9);
int nine = 9;
tuple<int, double, const int&> dummy = make_tuple(3, 7.3, nine);
EXPECT_EQ(6, a.Perform(dummy));
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment