1
mirror of https://github.com/monero-project/monero synced 2024-11-18 00:36:30 +01:00

Fixes #3645: error on freebsd lambda return values forced to std::string

This commit is contained in:
rockhouse@users.noreply.github.com 2018-06-04 12:02:06 +02:00 committed by moneromooo-monero
parent 8e64b61663
commit 1380b70e74
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

View File

@ -165,7 +165,7 @@ int main(int argc, char* argv[])
"blackball-db-dir", "Specify blackball database directory",
get_default_db_path(),
{{ &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])
return (boost::filesystem::path(val) / "testnet").string();
else if (testnet_stagenet[1])