mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Config: Removed useless const
This commit is contained in:
parent
638c2b35c3
commit
9b5d0a7cdd
2 changed files with 10 additions and 10 deletions
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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue