Cleanup: Remove effect-less const

Using `const` on an enum type returned by value doesn't have an effect.
This commit is contained in:
Julian Eisel 2021-11-03 17:28:52 +01:00
parent debf4b70db
commit de2988ea1b
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ class Value {
public:
virtual ~Value() = default;
const eValueType type() const
eValueType type() const
{
return type_;
}