Use boost::filesystem::path::string() instead of path::native()

This fixes a mingw32 conversion error during cross-compilation.
This commit is contained in:
Jack Grigg
2018-04-14 16:10:44 -06:00
parent 1dae6e9336
commit c5b26acad8
2 changed files with 3 additions and 3 deletions

View File

@@ -99,7 +99,7 @@ TEST(paymentdisclosure, mainnet) {
boost::filesystem::create_directories(pathTemp);
mapArgs["-datadir"] = pathTemp.string();
std::cout << "Test payment disclosure database created in folder: " << pathTemp.native() << std::endl;
std::cout << "Test payment disclosure database created in folder: " << pathTemp.string() << std::endl;
PaymentDisclosureDBTest mydb(pathTemp);