Use boost::filesystem::path::string() instead of path::native()
This fixes a mingw32 conversion error during cross-compilation.
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user