Removed unused function.
This commit is contained in:
parent
85614296e2
commit
663c59c470
@ -17,19 +17,6 @@ namespace anthem
|
||||
//
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
inline bool isPrefix(const char *prefix, const char *string)
|
||||
{
|
||||
const auto prefixLength = std::strlen(prefix);
|
||||
const auto stringLength = std::strlen(string);
|
||||
|
||||
if (stringLength < prefixLength)
|
||||
return false;
|
||||
|
||||
return std::strncmp(prefix, string, prefixLength) == 0;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
constexpr const auto HeadVariablePrefix = "V";
|
||||
constexpr const auto BodyVariablePrefix = "X";
|
||||
constexpr const auto UserVariablePrefix = "U";
|
||||
|
Loading…
Reference in New Issue
Block a user