changed allowed separator

This commit is contained in:
mes5k 2004-08-11 03:05:04 +00:00
parent dc0aa2daf3
commit 867b526950
2 changed files with 2 additions and 2 deletions

View File

@ -200,7 +200,7 @@ MultiArg<T>::MultiArg(const string& flag,
string temp( os.str() );
if ( i > 0 )
_typeDesc += ",";
_typeDesc += "|";
_typeDesc += temp;
}
};

View File

@ -221,7 +221,7 @@ ValueArg<T>::ValueArg(const string& flag,
string temp( os.str() );
if ( i > 0 )
_typeDesc += ",";
_typeDesc += "|";
_typeDesc += temp;
}
}