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