Skip to content

Commit bcf7848

Browse files
[test] fix compile error on macOS
Signed-off-by: Christian Parpart <[email protected]>
1 parent 17ac598 commit bcf7848

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test-boxed-cpp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ struct Wrap
189189
{
190190
overload<Ts...> func_wrap;
191191

192-
Wrap(Ts... funcs): func_wrap(funcs...) {}
192+
Wrap(Ts... funcs): func_wrap { funcs... } {}
193193

194194
template <typename... Args>
195195
auto operator()(Args... args)

0 commit comments

Comments
 (0)