Remove redundant type qualifier:

The extra `const` type qualifier on the return type has no effect.
Clang emits `-Wignored-qualifiers` warning with `-Wextra`.
This commit is contained in:
Joe Loser
2018-05-03 21:47:24 -04:00
committed by Nikolaos D. Bougalis
parent 93780c25f7
commit c1c332f0b0
2 changed files with 2 additions and 2 deletions

View File

@@ -55,7 +55,7 @@ public:
template <class Object>
void writeResult (Object&);
static const char* const name()
static char const* name()
{
return "ledger";
}

View File

@@ -41,7 +41,7 @@ public:
setVersion (obj);
}
static const char* const name()
static char const* name()
{
return "version";
}