2
0
mirror of https://github.com/boostorg/test.git synced 2026-01-24 06:22:12 +00:00

Merge branch 'topic/PR127-silence-unused-variable-warning' into next-internal

* topic/PR127-silence-unused-variable-warning:
  Change log
  Silence 'unused variable' warning
This commit is contained in:
Raffi Enficiaud
2018-01-31 23:42:33 +01:00
2 changed files with 2 additions and 1 deletions

View File

@@ -31,6 +31,7 @@
# [pull_request 121] fix compiler warning
# [pull_request 122] Fix some fallthrough warnings with `gcc >= 7`
# [pull_request 125] Prevent 2 unused parameter warnings
# [pull_request 127] Silence 'unused variable' warning
# [ticket 12092] Request: allow `std::tuple` typelists in `BOOST_AUTO_TEST_CASE_TEMPLATE`
# [ticket 12597] Report tests with clashing names
# [ticket 12969] Problem linking `print_helper_t<nullptr_t>` under Clang

View File

@@ -938,7 +938,7 @@ attach_debugger( bool break_or_continue )
return true;
#else // ****************************************************** default
(void) break_or_continue; // silence 'unused variable' warning
return false;
#endif