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

@@ -61,7 +61,7 @@ static_assert(!ct::can_invoke_constexpr(add{}, 3, 7), "");
struct S {
S() = delete;
S(int){};
constexpr int operator()() { return 0; }
constexpr int operator()() const { return 0; }
};
S s{0};