Merge pull request #1 from blackball/blackball-patch-1

Fix return type in README file.
This commit is contained in:
Hui 2018-10-02 19:22:02 +08:00 committed by GitHub
commit 397c2a934f
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;
}
}
```