Fix MSVC 'unused return' warning; Addresses #31

This commit is contained in:
Marshall Clow
2021-03-09 06:51:48 -08:00
parent 99901a98fd
commit 85fd1e434f

View File

@ -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;
}