From cc0c684a92c7a546813450ec83d3ea9e5735833b Mon Sep 17 00:00:00 2001 From: Kohei Takahashi Date: Fri, 27 Jul 2018 12:45:33 +0900 Subject: [PATCH] test: Suppress unused warning --- test/sequence/construction.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/sequence/construction.hpp b/test/sequence/construction.hpp index 57ba5301..94c7d182 100644 --- a/test/sequence/construction.hpp +++ b/test/sequence/construction.hpp @@ -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 t1;