diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2014-06-30 19:30:49 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2014-06-30 20:57:13 -0700 |
commit | aa4df026d44bd205f8bfce8a3b8d6a1144332f32 (patch) | |
tree | 397692da57b2be8f7c083989ed37fb03308d5b2c /src/strings | |
parent | 7c5c2058e9aea996dc6c76a7e6d9ba4fc2a2bc77 (diff) | |
download | tmwa-aa4df026d44bd205f8bfce8a3b8d6a1144332f32.tar.gz tmwa-aa4df026d44bd205f8bfce8a3b8d6a1144332f32.tar.bz2 tmwa-aa4df026d44bd205f8bfce8a3b8d6a1144332f32.tar.xz tmwa-aa4df026d44bd205f8bfce8a3b8d6a1144332f32.zip |
Finally get around to decoupling the warning system
Diffstat (limited to 'src/strings')
-rw-r--r-- | src/strings/base_test.cpp | 3 | ||||
-rw-r--r-- | src/strings/strings2_test.cpp | 2 | ||||
-rw-r--r-- | src/strings/strings_test.cpp | 2 |
3 files changed, 0 insertions, 7 deletions
diff --git a/src/strings/base_test.cpp b/src/strings/base_test.cpp index 2083fdc..f9b9ca6 100644 --- a/src/strings/base_test.cpp +++ b/src/strings/base_test.cpp @@ -28,9 +28,6 @@ #include "../poison.hpp" -#pragma GCC diagnostic ignored "-Wzero-as-null-pointer-constant" - - namespace tmwa { using namespace strings; diff --git a/src/strings/strings2_test.cpp b/src/strings/strings2_test.cpp index 872d201..18c7db4 100644 --- a/src/strings/strings2_test.cpp +++ b/src/strings/strings2_test.cpp @@ -26,8 +26,6 @@ namespace tmwa { -#pragma GCC diagnostic ignored "-Wzero-as-null-pointer-constant" - TEST(StringTests, traits2) { ZString print_non = "\t\e"_s; diff --git a/src/strings/strings_test.cpp b/src/strings/strings_test.cpp index 8c3d80a..a95499d 100644 --- a/src/strings/strings_test.cpp +++ b/src/strings/strings_test.cpp @@ -28,8 +28,6 @@ namespace tmwa { -#pragma GCC diagnostic ignored "-Wzero-as-null-pointer-constant" - template<typename T> class StringTest : public ::testing::Test { |