diff options
| author | Ben Woosley <[email protected]> | 2020-02-27 15:20:31 -0800 |
|---|---|---|
| committer | Ben Woosley <[email protected]> | 2020-05-08 11:18:43 -0700 |
| commit | df37377e30678ac9b8338ea920e50b7296da6bd5 (patch) | |
| tree | 71f19d59320fd191f990a9e1b449d60459e17550 /src/test/util_threadnames_tests.cpp | |
| parent | Merge #16224: gui: Bilingual GUI error messages (diff) | |
| download | discoin-df37377e30678ac9b8338ea920e50b7296da6bd5.tar.xz discoin-df37377e30678ac9b8338ea920e50b7296da6bd5.zip | |
test: Fix outstanding -Wsign-compare errors
Diffstat (limited to 'src/test/util_threadnames_tests.cpp')
| -rw-r--r-- | src/test/util_threadnames_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/util_threadnames_tests.cpp b/src/test/util_threadnames_tests.cpp index f226caf71..4dcc080b2 100644 --- a/src/test/util_threadnames_tests.cpp +++ b/src/test/util_threadnames_tests.cpp @@ -62,7 +62,7 @@ BOOST_AUTO_TEST_CASE(util_threadnames_test_rename_threaded) std::set<std::string> names = RenameEnMasse(100); - BOOST_CHECK_EQUAL(names.size(), 100); + BOOST_CHECK_EQUAL(names.size(), 100U); // Names "test_thread.[n]" should exist for n = [0, 99] for (int i = 0; i < 100; ++i) { |