clang-tidy: remove pointless const

Found with readability-const-return-type

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev 2021-08-17 20:16:58 -07:00
parent bedcf1cce5
commit da1783cdff

View File

@ -63,7 +63,7 @@ cue_next_token(StringView &src) noexcept
return cue_next_word(src);
}
static const StringView
static StringView
cue_next_value(StringView &src) noexcept
{
src.StripLeft();