Skip to content
Snippets Groups Projects
Commit 2865cdf0 authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Fix a few warnings due to proper gcc warning supression

parent 23b2014a
No related branches found
No related tags found
No related merge requests found
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
#include <set> #include <set>
#include <boost/range.hpp> #include <boost/range.hpp>
#if LL_GNUC #if LL_GNUC && GCC_VERSION >= 80000
#pragma GCC diagnostic ignored "-Wstringop-truncation" #pragma GCC diagnostic ignored "-Wstringop-truncation"
#endif #endif
......
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
#endif #endif
#include <boost/optional/optional.hpp> #include <boost/optional/optional.hpp>
#include <absl/container/flat_hash_map.h> #include <absl/container/flat_hash_map.h>
#if LL_GNUC #if LL_GNUC && GCC_VERSION >= 90000
#pragma GCC diagnostic pop #pragma GCC diagnostic pop
#endif #endif
#include <string> #include <string>
......
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
#include "llstring.h" #include "llstring.h"
#include "llstringtable.h" #include "llstringtable.h"
#if LL_GNUC #if LL_GNUC && GCC_VERSION >= 80000
#pragma GCC diagnostic ignored "-Wstringop-truncation" #pragma GCC diagnostic ignored "-Wstringop-truncation"
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment