summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-12-11 16:07:11 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-12-11 16:07:11 +0000
commit5cbd5c284f45556dcf2d2bd8d72f920feefc504c (patch)
tree17b27aa4c1b5ed9efe0974a5846e41bd08b43a78
parentca2a3c8f6f9c907c5c91e48fc3ddc2107dde2400 (diff)
downloadATCD-5cbd5c284f45556dcf2d2bd8d72f920feefc504c.tar.gz
added suppression of warning 1136, conversion to integral type of smaller size could lose data, for cxx V6.1-029
-rw-r--r--include/makeinclude/platform_osf1_4.0.GNU19
1 files changed, 10 insertions, 9 deletions
diff --git a/include/makeinclude/platform_osf1_4.0.GNU b/include/makeinclude/platform_osf1_4.0.GNU
index 4b849e7bd9f..967417aec59 100644
--- a/include/makeinclude/platform_osf1_4.0.GNU
+++ b/include/makeinclude/platform_osf1_4.0.GNU
@@ -18,17 +18,18 @@ CFLAGS += -pthread
#### CXX_VER to CXX_5 either on the make command line, or by
#### or by setting the CXX_VER environment variable to CXX_5.
# WARNING_FLAGS +=
-# 9: nested comment not allowed. But there's one in /usr/include/pdsc.h!
-# 174: expr_has_no_effect
-# 193: zero used for undefined preprocessing identifier
-# 236: controlling expression is constant
-# 401: base_class_with_nonvirtual_dtor
-# 610: nonoverriding_function_decl
-# 835: unreferenced_function_param
-# 839: no_corresponding_delete (until this is fixed in libTAO)
+# 9: nested comment not allowed. But there's one in /usr/include/pdsc.h!
+# 174: expr_has_no_effect
+# 193: zero used for undefined preprocessing identifier
+# 236: controlling expression is constant
+# 401: base_class_with_nonvirtual_dtor
+# 610: nonoverriding_function_decl
+# 835: unreferenced_function_param
+# 839: no_corresponding_delete (until this is fixed in libTAO)
+# 1136: conversion to integral type of smaller size could lose data
ifneq ($(CXX_VER),CXX_5)
WARNING_FLAGS += -w0 -msg_display_number \
- -msg_disable 9,174,193,236,401,610,835,839
+ -msg_disable 9,174,193,236,401,610,835,839,1136
endif
CCFLAGS += $(CFLAGS) -ptr ptrepository $(WARNING_FLAGS)