diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-04-12 11:14:43 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-04-12 11:14:43 +0200 |
commit | 5053f8f40b83ebfaa0fe68194cc8842ab11272b0 (patch) | |
tree | 1c9f98e7e3aa7da831e3c768fe7130442333048a /src/wallet | |
parent | Merge pull request #3536 (diff) | |
parent | fix lambda compile error on openbsd (diff) | |
download | monero-5053f8f40b83ebfaa0fe68194cc8842ab11272b0.tar.xz |
Merge pull request #3502
11c933e1 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; |