From a42880b72d4a6273c6859897eae14e009fadb7d9 Mon Sep 17 00:00:00 2001 From: mes5k Date: Thu, 25 Nov 2004 03:57:34 +0000 Subject: [PATCH] removed two stage lookup ifdefs --- include/tclap/UnlabeledMultiArg.h | 6 ++---- include/tclap/UnlabeledValueArg.h | 6 ++---- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/include/tclap/UnlabeledMultiArg.h b/include/tclap/UnlabeledMultiArg.h index b35034d..5b5bb8e 100644 --- a/include/tclap/UnlabeledMultiArg.h +++ b/include/tclap/UnlabeledMultiArg.h @@ -39,16 +39,14 @@ template class UnlabeledMultiArg : public MultiArg { -#ifdef TWO_STAGE_NAME_LOOKUP - //If compiler has two stage name lookup (as gcc >= 3.4 does) - //this is requried to prevent undef. symbols + // If compiler has two stage name lookup (as gcc >= 3.4 does) + // this is requried to prevent undef. symbols using MultiArg::_ignoreable; using MultiArg::_hasBlanks; using MultiArg::_extractValue; using MultiArg::_typeDesc; using MultiArg::_name; using MultiArg::_description; -#endif public: diff --git a/include/tclap/UnlabeledValueArg.h b/include/tclap/UnlabeledValueArg.h index 7a98b6b..6899a3b 100644 --- a/include/tclap/UnlabeledValueArg.h +++ b/include/tclap/UnlabeledValueArg.h @@ -41,9 +41,8 @@ template class UnlabeledValueArg : public ValueArg { -#ifdef TWO_STAGE_NAME_LOOKUP - //If compiler has two stage name lookup (as gcc >= 3.4 does) - //this is requried to prevent undef. symbols + // If compiler has two stage name lookup (as gcc >= 3.4 does) + // this is requried to prevent undef. symbols using ValueArg::_ignoreable; using ValueArg::_hasBlanks; using ValueArg::_extractValue; @@ -51,7 +50,6 @@ class UnlabeledValueArg : public ValueArg using ValueArg::_name; using ValueArg::_description; using ValueArg::_alreadySet; -#endif public: