remove some spaces

This commit is contained in:
Isaac Connor 2018-03-29 12:24:12 -04:00
parent a56eafe796
commit 0053404553
1 changed files with 7 additions and 7 deletions

View File

@ -140,22 +140,22 @@ private:
return( level ); return( level );
} }
bool boolEnv( const std::string &name, bool defaultValue=false ); bool boolEnv(const std::string &name, bool defaultValue=false);
int intEnv( const std::string &name, bool defaultValue=0 ); int intEnv(const std::string &name, bool defaultValue=0);
std::string strEnv( const std::string &name, const std::string &defaultValue="" ); std::string strEnv(const std::string &name, const std::string &defaultValue="");
char *getTargettedEnv( const std::string &name ); char *getTargettedEnv(const std::string &name);
void loadEnv(); void loadEnv();
public: public:
const std::string &id() const { const std::string &id() const {
return( mId ); return mId;
} }
const std::string &id( const std::string &id ); const std::string &id(const std::string &id);
Level level() const { Level level() const {
return( mLevel ); return mLevel;
} }
Level level( Level=NOOPT ); Level level( Level=NOOPT );