Merge pull request #3502

11c933e1 fix lambda compile error on openbsd (moneromooo-monero)
This commit is contained in:
Riccardo Spagni
2018-04-12 11:14:43 +02:00
5 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -145,7 +145,7 @@ struct options {
"shared-ringdb-dir", tools::wallet2::tr("Set shared ring database path"),
get_default_ringdb_path(),
testnet,
[](bool testnet, bool defaulted, std::string val) {
[](bool testnet, bool defaulted, std::string val)->std::string {
if (testnet)
return (boost::filesystem::path(val) / "testnet").string();
return val;