mirror of
https://github.com/cuberite/TCLAP.git
synced 2025-09-11 13:14:45 -04:00
removed two stage lookup ifdefs
This commit is contained in:
parent
9a5b3a056e
commit
a42880b72d
@ -39,16 +39,14 @@ template<class T>
|
||||
class UnlabeledMultiArg : public MultiArg<T>
|
||||
{
|
||||
|
||||
#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<T>::_ignoreable;
|
||||
using MultiArg<T>::_hasBlanks;
|
||||
using MultiArg<T>::_extractValue;
|
||||
using MultiArg<T>::_typeDesc;
|
||||
using MultiArg<T>::_name;
|
||||
using MultiArg<T>::_description;
|
||||
#endif
|
||||
|
||||
public:
|
||||
|
||||
|
@ -41,9 +41,8 @@ template<class T>
|
||||
class UnlabeledValueArg : public ValueArg<T>
|
||||
{
|
||||
|
||||
#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<T>::_ignoreable;
|
||||
using ValueArg<T>::_hasBlanks;
|
||||
using ValueArg<T>::_extractValue;
|
||||
@ -51,7 +50,6 @@ class UnlabeledValueArg : public ValueArg<T>
|
||||
using ValueArg<T>::_name;
|
||||
using ValueArg<T>::_description;
|
||||
using ValueArg<T>::_alreadySet;
|
||||
#endif
|
||||
|
||||
public:
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user