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

@ -90,7 +90,7 @@ void A2::attribute (const std::string& name, const std::string& value)
////////////////////////////////////////////////////////////////////////////////
// Accessor for attributes.
std::string A2::attribute (const std::string& name) const
const std::string A2::attribute (const std::string& name) const
{
// Prevent autovivification.
auto i = _attributes.find (name);
@ -101,7 +101,7 @@ std::string A2::attribute (const std::string& name) const
}
////////////////////////////////////////////////////////////////////////////////
std::string A2::getToken () const
const std::string A2::getToken () const
{
auto i = _attributes.find ("canonical");
if (i == _attributes.end ())
@ -175,7 +175,7 @@ void A2::decompose ()
}
////////////////////////////////////////////////////////////////////////////////
std::string A2::dump () const
const std::string A2::dump () const
{
auto output = Lexer::typeToString (_lextype);
@ -638,7 +638,7 @@ void CLI2::prepareFilter ()
////////////////////////////////////////////////////////////////////////////////
// Return all the MISCELLANEOUS args.
std::vector <std::string> CLI2::getWords ()
const std::vector <std::string> CLI2::getWords ()
{
std::vector <std::string> words;
for (const auto& a : _args)
@ -710,7 +710,7 @@ std::string CLI2::getCommand (bool canonical) const
}
////////////////////////////////////////////////////////////////////////////////
std::string CLI2::dump (const std::string& title) const
const std::string CLI2::dump (const std::string& title) const
{
std::stringstream out;