[clang-tidy] Remove redundant const

Found with readability-const-return-type

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev
2019-09-27 20:40:09 -07:00
committed by Paul Beckingham
parent 7f86b29aa9
commit 55d103c491
12 changed files with 36 additions and 36 deletions

View File

@@ -72,7 +72,7 @@ public:
void has_ids ();
void auto_dep_scan ();
void clear ();
const std::string dump ();
std::string dump ();
void dependency_scan ();
@@ -121,12 +121,12 @@ public:
int latest_id ();
// Generalized task accessors.
const std::vector <Task> all_tasks ();
std::vector <Task> all_tasks ();
bool get (int, Task&);
bool get (const std::string&, Task&);
bool has (const std::string&);
const std::vector <Task> siblings (Task&);
const std::vector <Task> children (Task&);
std::vector <Task> siblings (Task&);
std::vector <Task> children (Task&);
// ID <--> UUID mapping.
std::string uuid (int);