Revert "[clang-tidy] Remove redundant const"

This reverts commit 55d103c491.
This commit is contained in:
Paul Beckingham
2020-12-05 16:18:15 -05:00
parent c43a513158
commit 702af00435
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 ();
std::string dump ();
const std::string dump ();
void dependency_scan ();
@@ -121,12 +121,12 @@ public:
int latest_id ();
// Generalized task accessors.
std::vector <Task> all_tasks ();
const std::vector <Task> all_tasks ();
bool get (int, Task&);
bool get (const std::string&, Task&);
bool has (const std::string&);
std::vector <Task> siblings (Task&);
std::vector <Task> children (Task&);
const std::vector <Task> siblings (Task&);
const std::vector <Task> children (Task&);
// ID <--> UUID mapping.
std::string uuid (int);