Unverified Commit 0258418a authored by Gabi Melman's avatar Gabi Melman Committed by GitHub

Merge pull request #853 from blackball/v1.x

return nothing if it's a void function.
parents c5011181 397c2a93
......@@ -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;
}
}
```
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment