Don't return void
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Armin Friedl 2021-01-31 22:26:53 +01:00
parent 6525de9303
commit 6c8f0cb6bb
Signed by: armin
GPG key ID: 48C726EEE7FBCBC8
2 changed files with 2 additions and 1 deletions

View file

@ -72,7 +72,7 @@ void init(spdlog::level::level_enum level = spdlog::level::level_enum::off) {
return; return;
} }
return spdlog::set_level(_init_from_compile()); spdlog::set_level(_init_from_compile());
} }
} // namespace log } // namespace log

View file

@ -1,6 +1,7 @@
#include <gtest/gtest.h> #include <gtest/gtest.h>
#include <archive.hpp> #include <archive.hpp>
#include <filesystem>
#include <spec.hpp> #include <spec.hpp>
TEST(ArchiveTest, ArchiveSpecDetectsSingleRoot) { TEST(ArchiveTest, ArchiveSpecDetectsSingleRoot) {