2
0
mirror of https://github.com/boostorg/mysql.git synced 2026-02-14 12:52:17 +00:00

Lowered std requirement to C++11

This commit is contained in:
ruben
2020-06-13 00:40:05 +01:00
parent 3407d818f6
commit 591671bd8d
118 changed files with 2156 additions and 1810 deletions

View File

@@ -22,7 +22,7 @@ TEST(ResultsetTest, 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));
}
}