ndn.cxx: Add trick for gcc to ignore warning from boost includes
diff --git a/ndn.cxx/name-component.cc b/ndn.cxx/name-component.cc
index 20bdb6a..4f4e253 100644
--- a/ndn.cxx/name-component.cc
+++ b/ndn.cxx/name-component.cc
@@ -11,6 +11,8 @@
 #if __clang__
 #pragma clang diagnostic push
 #pragma clang diagnostic ignored "-Wreorder"
+#elif __GNUC__
+#pragma GCC diagnostic ignored "-Wreorder"
 #endif
 
 #include "name-component.h"