Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitb1221f6

Browse files
committed
Fixing warning with comparison of signed/unsigned ints.
1 parent00bd364 commitb1221f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎libs/network/test/utils_thread_pool.cpp‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ using namespace boost::network;
2222

2323
BOOST_AUTO_TEST_CASE( default_constructor ) {
2424
utils::thread_pool pool;
25-
BOOST_CHECK_EQUAL(pool.thread_count(),1);
25+
BOOST_CHECK_EQUAL(pool.thread_count(),std::size_t(1));
2626
}
2727

2828
structfoo {

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp