test: Suppress unused warning

This commit is contained in:
Kohei Takahashi
2018-07-27 12:45:33 +09:00
parent bd96a6bcfb
commit cc0c684a92

View File

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