Merge pull request #853 from blackball/v1.x

return nothing if it's a void function.
This commit is contained in:
Gabi Melman 2018-10-02 15:22:58 +03:00 committed by GitHub
commit 0258418a99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -128,7 +128,7 @@ void basic_logfile_example()
catch (const spdlog::spdlog_ex &ex)
{
std::cout << "Log init failed: " << ex.what() << std::endl;
return 1;
return;
}
}
```