Merge pull request #3033 from Dragios/fix-warning

Fix typo for -Wunused-local-typedefs
master
Sebastian Valle 2017-10-22 11:26:32 +07:00 committed by GitHub
commit eb99308e70
1 changed files with 1 additions and 1 deletions

@ -10,7 +10,7 @@
#include <tuple>
#ifdef __GNUC__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-local-typedef"
#pragma GCC diagnostic ignored "-Wunused-local-typedefs"
#endif
#include <boost/icl/interval_map.hpp>
#ifdef __GNUC__