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;
nil empty;
(void)empty;
FUSION_SEQUENCE<> empty0;
(void)empty0;
#ifndef NO_CONSTRUCT_FROM_NIL
FUSION_SEQUENCE<> empty1(empty);
(void)empty1;
#endif
FUSION_SEQUENCE<int> t1;