diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-09-07 01:13:43 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-09-07 01:13:43 +0100 |
commit | e6dd6304012ce8e18ec71e134faf609bd1579426 (patch) | |
tree | b9c032132a48e6fd1478194a31a91a23ccf54f34 | |
parent | Update Doxygen config (diff) | |
download | libdbpp-e6dd6304012ce8e18ec71e134faf609bd1579426.tar.bz2 libdbpp-e6dd6304012ce8e18ec71e134faf609bd1579426.tar.xz libdbpp-e6dd6304012ce8e18ec71e134faf609bd1579426.zip |
boost::mpl::list not included, use std::tuple
-rw-r--r-- | libdbpp/unittests/testUtils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdbpp/unittests/testUtils.cpp b/libdbpp/unittests/testUtils.cpp index 4d1adbe..cc5cdc3 100644 --- a/libdbpp/unittests/testUtils.cpp +++ b/libdbpp/unittests/testUtils.cpp @@ -189,7 +189,7 @@ BOOST_AUTO_TEST_CASE(bulkLoadFile) }); } -using StringTypes = boost::mpl::list<std::string, std::string_view, Glib::ustring>; +using StringTypes = std::tuple<std::string, std::string_view, Glib::ustring>; BOOST_AUTO_TEST_CASE_TEMPLATE(nullBind, Str, StringTypes) { auto db = DB::MockDatabase::openConnectionTo("pqmock"); |