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