diff options
| -rw-r--r-- | examples/equiv/equiv.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/examples/equiv/equiv.cc b/examples/equiv/equiv.cc index 7375512..01674c6 100644 --- a/examples/equiv/equiv.cc +++ b/examples/equiv/equiv.cc @@ -10,9 +10,10 @@ /* finally test it */ int main(int argc, char** argv) { - std::cout << std::boolalpha << astdx::is_same<bool, int>::value << std::endl; - std::cout << std::boolalpha << astdx::is_same<bool, bool>::value << std::endl; - std::cout << std::boolalpha << astdx::is_same<int, int>::value << std::endl; + std::cout << std::boolalpha; + std::cout << astdx::is_same<bool, int>::value << std::endl; + std::cout << astdx::is_same<bool, bool>::value << std::endl; + std::cout << astdx::is_same<int, int>::value << std::endl; return 0; } |
