summaryrefslogtreecommitdiff
path: root/TAO/rules.tao.GNU
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>1999-07-02 03:11:43 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>1999-07-02 03:11:43 +0000
commit77386644bfc15ff615052db170287ae3e2a96148 (patch)
treeccb464131475a15aeedbe06506f8f8c178eeb412 /TAO/rules.tao.GNU
parent7415138f286a6d61afe53934082e2c1011099774 (diff)
downloadATCD-77386644bfc15ff615052db170287ae3e2a96148.tar.gz
Enabled uninitialized variable warnings for EGCS. There no
longer appears to be a need to keep this warning disabled since recent versions of EGCS appear to be better behaved.
Diffstat (limited to 'TAO/rules.tao.GNU')
-rw-r--r--TAO/rules.tao.GNU3
1 files changed, 2 insertions, 1 deletions
diff --git a/TAO/rules.tao.GNU b/TAO/rules.tao.GNU
index 46bdb3323db..8b741f86207 100644
--- a/TAO/rules.tao.GNU
+++ b/TAO/rules.tao.GNU
@@ -27,11 +27,12 @@ ifeq ($(findstring g++,$(CXX)),g++)
CCFLAGS += -Wno-unused
endif # g++ < 2.8
+ # This no longer appears to be needed.
ifneq ($(findstring egcs-2.91,$(shell $(CXX) --version)),)
#### egcs 2.91.57 seems to go overboard:
#### DynAny_i.cpp:565: warning: `class TAO_DynAny_i * this' might be
#### used uninitialized in this function
- CCFLAGS += -Wno-uninitialized
+ #CCFLAGS += -Wno-uninitialized
endif # egcs 2.91.x
endif # g++