Commit 5a36e2a6 authored by Dominik Charousset's avatar Dominik Charousset

Fix compiler error on MSVC

parent c6b6b4e2
......@@ -36,5 +36,5 @@ CAF_TEST(make_typed_behavior automatically deduces its types) {
auto bhvr = make_typed_behavior([](const std::string&) {},
[](int32_t x) { return x; },
[](double x) { return x; });
static_assert(std::is_same<handle::behavior_type, decltype(bhvr)>::value);
static_assert(std::is_same<handle::behavior_type, decltype(bhvr)>::value, "");
}
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