forked from boostorg/concept_check
Fix MSVC 'unused return' warning; Addresses #31
This commit is contained in:
@ -352,7 +352,7 @@ namespace boost
|
||||
private:
|
||||
void test(boost::false_type)
|
||||
{
|
||||
f(first,second);
|
||||
(void) f(first,second);
|
||||
Return r = f(first, second); // require operator()
|
||||
(void)r;
|
||||
}
|
||||
|
Reference in New Issue
Block a user