summaryrefslogtreecommitdiff
path: root/libpqpp/unittests/testpq.cpp
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2019-01-31 20:12:57 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2019-02-03 19:02:43 +0000
commit9bf78dba1a5520b3d50a8d9ac74f0c0c12e46e59 (patch)
treecb046d5faf68ca86c4e9c49245abdcccd01940f8 /libpqpp/unittests/testpq.cpp
parentSwitch to structured binding interface (diff)
downloadlibdbpp-postgresql-9bf78dba1a5520b3d50a8d9ac74f0c0c12e46e59.tar.bz2
libdbpp-postgresql-9bf78dba1a5520b3d50a8d9ac74f0c0c12e46e59.tar.xz
libdbpp-postgresql-9bf78dba1a5520b3d50a8d9ac74f0c0c12e46e59.zip
Remove boost::filesystem in favour of std::filesystem
Diffstat (limited to 'libpqpp/unittests/testpq.cpp')
-rw-r--r--libpqpp/unittests/testpq.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpqpp/unittests/testpq.cpp b/libpqpp/unittests/testpq.cpp
index 4f36ae7..954366a 100644
--- a/libpqpp/unittests/testpq.cpp
+++ b/libpqpp/unittests/testpq.cpp
@@ -152,7 +152,7 @@ BOOST_AUTO_TEST_CASE( testP2MockScriptDir )
while (select->fetch()) {
std::string path;
(*select)[0] >> path;
- BOOST_REQUIRE(boost::filesystem::exists(path));
+ BOOST_REQUIRE(std::filesystem::exists(path));
}
}