refactor: remove unnececeary 's' operator

This commit is contained in:
TopchetoEU 2022-10-28 10:10:10 +03:00
parent 572e9cb484
commit 24f312d848

View File

@ -29,5 +29,5 @@ operator_t tree::operator_find(const std::string &raw) {
if (op == raw) return (operator_t)i;
i++;
}
throw "Invalid operator '"s + raw + "' given.";
throw "Invalid operator '" + raw + "' given.";
}