Skip to content

Commit 61349ed

Browse files
fixing signed/unsigned in test attributes
1 parent 1ecf32f commit 61349ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_attributes.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ TEST_CASE("attribute test - nested scoped") {
173173
}
174174

175175
TEST_CASE("attribute test - multi threaded") {
176-
const int n_tasks = std::thread::hardware_concurrency();
176+
const auto n_tasks = std::thread::hardware_concurrency();
177177
constexpr auto n_values = 30;
178178
auto mt_sink = std::make_shared<spdlog::sinks::test_sink_mt>();
179179
auto logger = spdlog::logger("logger", mt_sink);

0 commit comments

Comments
 (0)