test: Suppress unused warning

This commit is contained in:
Kohei Takahashi
2018-08-02 12:43:26 +09:00
parent b02cb70760
commit 95b4500898

View File

@ -55,11 +55,14 @@ test()
using namespace test_detail;
nil empty;
(void)empty;
map<> empty0;
(void)empty0;
#ifndef NO_CONSTRUCT_FROM_NIL
map<> empty1(empty);
(void)empty1;
#endif
map<pair<key1, int> > t1;