Silenced warnings about unused variables.

This commit is contained in:
Andrey Semashev
2016-11-07 17:50:58 +03:00
parent 399ef5207e
commit a1ba85e5f6
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