diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-02-03 03:25:58 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-02-03 03:25:58 +0000 |
commit | 28c4e8454e120fd1f463511bb09184656de79372 (patch) | |
tree | 482cde1f98b3ccf903652c3f468d3c5680905cc1 /include | |
parent | 378141e8cd3a276d12d09274f98cd1c028457747 (diff) | |
download | ATCD-28c4e8454e120fd1f463511bb09184656de79372.tar.gz |
added suppression of warning 610, nonoverriding_function_decl
Diffstat (limited to 'include')
-rw-r--r-- | include/makeinclude/platform_osf1_4.0.GNU | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/makeinclude/platform_osf1_4.0.GNU b/include/makeinclude/platform_osf1_4.0.GNU index 3bf7a244ae3..8bc4654593d 100644 --- a/include/makeinclude/platform_osf1_4.0.GNU +++ b/include/makeinclude/platform_osf1_4.0.GNU @@ -15,15 +15,16 @@ CFLAGS += -pthread #### They can be enabled on the gmake command line with CXX_VER=POST_5X, #### or by setting the CXX_VER environment variable to POST_5X. # WARNING_FLAGS += -# 9: nested comment not allowed, but there's one in /usr/include/pdsc.h +# 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 # 340: value copied to temporary, reference to temporary used # 401: base_class_with_nonvirtual_dtor +# 610: nonoverriding_function_decl ifeq ($(CXX_VER),POST_5X) WARNING_FLAGS += -w0 -msg_display_number -msg_display_tag \ - -msg_disable 9,174,193,236,340,401 + -msg_disable 9,174,193,236,340,401,610 endif CCFLAGS += $(CFLAGS) -ptr ptrepository $(WARNING_FLAGS) |