mirror of
https://github.com/boostorg/fusion.git
synced 2025-07-25 10:07:24 +02:00
test: Suppress unused warning
This commit is contained in:
@ -55,11 +55,14 @@ test()
|
|||||||
using namespace test_detail;
|
using namespace test_detail;
|
||||||
|
|
||||||
nil empty;
|
nil empty;
|
||||||
|
(void)empty;
|
||||||
|
|
||||||
map<> empty0;
|
map<> empty0;
|
||||||
|
(void)empty0;
|
||||||
|
|
||||||
#ifndef NO_CONSTRUCT_FROM_NIL
|
#ifndef NO_CONSTRUCT_FROM_NIL
|
||||||
map<> empty1(empty);
|
map<> empty1(empty);
|
||||||
|
(void)empty1;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
map<pair<key1, int> > t1;
|
map<pair<key1, int> > t1;
|
||||||
|
Reference in New Issue
Block a user