Replaced 201103 with 201103L.

This commit is contained in:
Takatoshi Kondo
2015-05-19 15:44:47 +09:00
parent 432c9cc542
commit e37f14fd6a
3 changed files with 9 additions and 9 deletions

View File

@@ -30,7 +30,7 @@ TEST(msgpack_tuple, non_member_get)
EXPECT_EQ("DEFG", msgpack::type::get<2>(t1));
}
#if __cplusplus >= 201103
#if __cplusplus >= 201103L
TEST(msgpack_tuple, std_non_member_get)
{
msgpack::type::tuple<int, bool, std::string> t1(42, true, "ABC");