mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Fixes #3645: error on freebsd lambda return values forced to std::string
This commit is contained in:
parent
8a7b3ff138
commit
afed9787cd
1 changed files with 1 additions and 1 deletions
|
@ -165,7 +165,7 @@ int main(int argc, char* argv[])
|
||||||
"blackball-db-dir", "Specify blackball database directory",
|
"blackball-db-dir", "Specify blackball database directory",
|
||||||
get_default_db_path(),
|
get_default_db_path(),
|
||||||
{{ &arg_testnet_on, &arg_stagenet_on }},
|
{{ &arg_testnet_on, &arg_stagenet_on }},
|
||||||
[](std::array<bool, 2> testnet_stagenet, bool defaulted, std::string val) {
|
[](std::array<bool, 2> testnet_stagenet, bool defaulted, std::string val)->std::string {
|
||||||
if (testnet_stagenet[0])
|
if (testnet_stagenet[0])
|
||||||
return (boost::filesystem::path(val) / "testnet").string();
|
return (boost::filesystem::path(val) / "testnet").string();
|
||||||
else if (testnet_stagenet[1])
|
else if (testnet_stagenet[1])
|
||||||
|
|
Loading…
Reference in a new issue