Config: Removed useless const
This commit is contained in:
10
src/Config.h
10
src/Config.h
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user