1
0
forked from boostorg/core

Silenced warnings about unused variables.

This commit is contained in:
Andrey Semashev
2016-11-07 17:50:58 +03:00
parent 5507006fc2
commit c0f277a7d8
7 changed files with 7 additions and 0 deletions

View File

@@ -15,6 +15,7 @@
int main()
{
boost::reference_wrapper<int const> r( 1 ); // this should produce an ERROR
(void)r;
}
#else