Config: Removed useless const

This commit is contained in:
Paul Beckingham 2015-10-16 08:18:08 -04:00
parent 638c2b35c3
commit 9b5d0a7cdd
2 changed files with 10 additions and 10 deletions

View file

@ -49,11 +49,11 @@ public:
void setDefaults ();
void clear ();
const bool has (const std::string&);
const std::string get (const std::string&);
const int getInteger (const std::string&);
const double getReal (const std::string&);
const bool getBoolean (const std::string&);
bool has (const std::string&);
std::string get (const std::string&);
int getInteger (const std::string&);
double getReal (const std::string&);
bool getBoolean (const std::string&);
void set (const std::string&, const int);
void set (const std::string&, const double);