diff options
author | Kevin Smith <git@kismith.co.uk> | 2018-04-28 12:54:35 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2018-04-28 12:54:35 (GMT) |
commit | 7f0bbb47ef2c8afb0cbe015438d8f2c4459ab7c0 (patch) | |
tree | b015d61e60a27b84d83c50f62f84f32581839985 /Swiften/Chat/UnitTest | |
parent | ae40d88f47c4f73b81d675b39a311eb6af8b03f3 (diff) | |
download | swift-7f0bbb47ef2c8afb0cbe015438d8f2c4459ab7c0.zip swift-7f0bbb47ef2c8afb0cbe015438d8f2c4459ab7c0.tar.bz2 |
Disable false-positive clang warning
Test-Information:
./scons check=1 allow_warnings=0 now passes on latest macOS
Change-Id: I4411d6b4953e6e2eb7fbb53e460fef296d24b0e6
Diffstat (limited to 'Swiften/Chat/UnitTest')
-rw-r--r-- | Swiften/Chat/UnitTest/ChatStateNotifierTest.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Swiften/Chat/UnitTest/ChatStateNotifierTest.cpp b/Swiften/Chat/UnitTest/ChatStateNotifierTest.cpp index efd37d9..b6c909a 100644 --- a/Swiften/Chat/UnitTest/ChatStateNotifierTest.cpp +++ b/Swiften/Chat/UnitTest/ChatStateNotifierTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010-2016 Isode Limited. + * Copyright (c) 2010-2018 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ @@ -13,6 +13,9 @@ #include <Swiften/Disco/DummyEntityCapsProvider.h> #include <Swiften/Network/DummyTimerFactory.h> +// Clang wrongly things that tests for 0 are using 0 as null. +#pragma clang diagnostic ignored "-Wzero-as-null-pointer-constant" + using namespace Swift; class ChatStateNotifierTest : public ::testing::Test { |