[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

@ -45,14 +45,14 @@ int confirm4 (const std::string&);
#ifndef HAVE_UUID_UNPARSE_LOWER
void uuid_unparse_lower (uuid_t uu, char *out);
#endif
const std::string uuid ();
std::string uuid ();
const std::string indentProject (
std::string indentProject (
const std::string&,
const std::string& whitespace = " ",
char delimiter = '.');
const std::vector <std::string> extractParents (
std::vector <std::string> extractParents (
const std::string&,
const char& delimiter = '.');