commit | 4699242353245b7964e61a0853845cb6da920a65 | [log] [tgz] |
---|---|---|
author | Alexander Afanasyev <alexander.afanasyev@ucla.edu> | Sat Aug 03 17:21:15 2013 -0700 |
committer | Alexander Afanasyev <alexander.afanasyev@ucla.edu> | Sat Aug 03 17:21:15 2013 -0700 |
tree | dcb8b8252eee76dc3c83edd0caaa7ac01b0312a7 | |
parent | 772f51ba6e94e96d49fb3637b041b58b6aafe7d1 [diff] [blame] |
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"