trying to fix MSVC build

This commit is contained in:
badair
2016-04-01 20:58:28 -05:00
parent 9a9a9a8521
commit 9e7e288417
10 changed files with 34 additions and 34 deletions

View File

@@ -133,7 +133,7 @@ int main() {
// the bind expression's placeholders
using expected_args = std::tuple<A, B, C, E, E, F, F, F, E, E>;
CT_ASSERT(std::is_same<args, expected_args>{});
CT_ASSERT(std::is_same<args, expected_args>::value);
auto runtime_test = BIND_WITH(std::bind);
assert(apply(runtime_test, expected_args{}) == "ABCDEFG");