From c76cd3d6b215d041adbf64b940e6dd741a93e7ff Mon Sep 17 00:00:00 2001 From: Kohei Takahashi Date: Sat, 7 Jul 2018 01:27:20 +0900 Subject: [PATCH] test: Suppress unused warning --- test/algorithm/ticket-5490.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/algorithm/ticket-5490.cpp b/test/algorithm/ticket-5490.cpp index dee27ef6..fedf733a 100644 --- a/test/algorithm/ticket-5490.cpp +++ b/test/algorithm/ticket-5490.cpp @@ -8,6 +8,7 @@ #include #include #include +#include using namespace boost::fusion; @@ -35,4 +36,6 @@ int main() vector l = transform(v, meta_func()); vector q = transform(v, meta_func()); + + boost::ignore_unused(l, q); }