diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-03-29 17:04:11 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-03-29 17:04:12 +0200 |
commit | 9fce7614c1ed467037c2e39b6d2e9f7d49197dfb (patch) | |
tree | 1c9f98e7e3aa7da831e3c768fe7130442333048a /src/wallet | |
parent | Merge pull request #3478 (diff) | |
parent | fix lambda compile error on openbsd (diff) | |
download | monero-9fce7614c1ed467037c2e39b6d2e9f7d49197dfb.tar.xz |
Merge pull request #3503
8ff2cc75 fix lambda compile error on openbsd (moneromooo-monero)
Diffstat (limited to 'src/wallet')
-rw-r--r-- | src/wallet/wallet2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 27310f400..b06444132 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -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; |