summaryrefslogtreecommitdiff
path: root/qpid/cpp/src
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2013-04-18 20:48:16 +0000
committerAndrew Stitcher <astitcher@apache.org>2013-04-18 20:48:16 +0000
commit5c9cca10d94274064da150e957721403488f888a (patch)
tree92853441c7d164a00460dbcc16c9663669047705 /qpid/cpp/src
parent2f3d7ca0600c8685fceb88b5636250145e019096 (diff)
downloadqpid-python-5c9cca10d94274064da150e957721403488f888a.tar.gz
QPID-4734: Expand ignoring warnings to all patchlevels of gcc 4.4
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1469559 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-rw-r--r--qpid/cpp/src/qpid/sys/SocketTransport.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/sys/SocketTransport.cpp b/qpid/cpp/src/qpid/sys/SocketTransport.cpp
index cf0770f4ee..2e03d18d82 100644
--- a/qpid/cpp/src/qpid/sys/SocketTransport.cpp
+++ b/qpid/cpp/src/qpid/sys/SocketTransport.cpp
@@ -20,7 +20,7 @@
*/
// Turn off unintialised warnings as errors when compiling under Red Enterprise Linux 6
// as an unitialised variable warning is unavoidable there.
-#if __GNUC__ == 4 && __GNUC_MINOR__ == 4 && __GNUC_PATCHLEVEL__ == 7
+#if __GNUC__ == 4 && __GNUC_MINOR__ == 4
#pragma GCC diagnostic warning "-Wuninitialized"
#endif