diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-05-20 02:36:39 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-05-20 02:36:39 +0000 |
commit | 4f74d96d2c3f604e93b2e047b87678a9b39ffbd8 (patch) | |
tree | cfcd7879408616f1e9bb77765191d2474efa4b18 /include | |
parent | 96be745e5d3b303cc256cc3038656ef4cd5c89ee (diff) | |
download | ATCD-4f74d96d2c3f604e93b2e047b87678a9b39ffbd8.tar.gz |
removed these warning suppressions:
174: expr_has_no_effect
610: nonoverriding_function_decl
They're certainly not needed with cxx 6.2-020, and
hopefully not needed with earlier versions.
Diffstat (limited to 'include')
-rw-r--r-- | include/makeinclude/platform_osf1_4.0.GNU | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/makeinclude/platform_osf1_4.0.GNU b/include/makeinclude/platform_osf1_4.0.GNU index 5e66ad9d172..b42e8f96499 100644 --- a/include/makeinclude/platform_osf1_4.0.GNU +++ b/include/makeinclude/platform_osf1_4.0.GNU @@ -40,11 +40,9 @@ endif # ! 6.0 #### 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 += -# 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) # 1016: expected type is incompatible with declared type of int (in bzero ()) @@ -52,7 +50,7 @@ endif # ! 6.0 ifneq ($(CXX_VER),CXX_5) WARNING_FLAGS += -w0 -msg_display_number -msg_display_tag WARNING_FLAGS += \ - -msg_disable 174,193,236,401,610,835,839$(CXX_1016)$(CXX_1136) + -msg_disable 193,236,401,835,839$(CXX_1016)$(CXX_1136) ifndef ACE_DU_VERSION # In case this file wasn't included by platform_osf1_cxx.GNU: |