[clang-tidy] Remove redundant const
Found with readability-const-return-type Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
committed by
Paul Beckingham
parent
7f86b29aa9
commit
55d103c491
@@ -89,8 +89,8 @@ public:
|
||||
void setAsNow (const std::string&);
|
||||
bool has (const std::string&) const;
|
||||
std::vector <std::string> all ();
|
||||
const std::string identifier (bool shortened = false) const;
|
||||
const std::string get (const std::string&) const;
|
||||
std::string identifier (bool shortened = false) const;
|
||||
std::string get (const std::string&) const;
|
||||
const std::string& get_ref (const std::string&) const;
|
||||
int get_int (const std::string&) const;
|
||||
unsigned long get_ulong (const std::string&) const;
|
||||
@@ -168,8 +168,8 @@ private:
|
||||
void parseJSON (const json::object*);
|
||||
void parseLegacy (const std::string&);
|
||||
void validate_before (const std::string&, const std::string&);
|
||||
const std::string encode (const std::string&) const;
|
||||
const std::string decode (const std::string&) const;
|
||||
std::string encode (const std::string&) const;
|
||||
std::string decode (const std::string&) const;
|
||||
|
||||
public:
|
||||
float urgency_project () const;
|
||||
|
||||
Reference in New Issue
Block a user