mirror of
https://github.com/boostorg/mysql.git
synced 2026-02-15 01:02:17 +00:00
Lowered std requirement to C++11
This commit is contained in:
@@ -24,7 +24,7 @@ TEST(ConnectionTest, RebindExecutor_Trivial_ReturnsCorrectType)
|
||||
other_executor
|
||||
>
|
||||
>;
|
||||
EXPECT_TRUE((std::is_same_v<rebound_type, expected_type>));
|
||||
EXPECT_TRUE((std::is_same<rebound_type, expected_type>::value));
|
||||
}
|
||||
|
||||
TEST(SocketConnectionTest, RebindExecutor_Trivial_ReturnsCorrectType)
|
||||
@@ -36,7 +36,7 @@ TEST(SocketConnectionTest, RebindExecutor_Trivial_ReturnsCorrectType)
|
||||
other_executor
|
||||
>
|
||||
>;
|
||||
EXPECT_TRUE((std::is_same_v<rebound_type, expected_type>));
|
||||
EXPECT_TRUE((std::is_same<rebound_type, expected_type>::value));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user