diff options
Diffstat (limited to 'src/lib/util/corestr.h')
-rw-r--r-- | src/lib/util/corestr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/corestr.h b/src/lib/util/corestr.h index b000d76731c..d23609a20c1 100644 --- a/src/lib/util/corestr.h +++ b/src/lib/util/corestr.h @@ -25,7 +25,7 @@ ***************************************************************************/ /* since stricmp is not part of the standard, we use this instead */ -int core_stricmp(const char *s1, const char *s2); +int core_stricmp(std::string_view s1, std::string_view s2); /* this macro prevents people from using stricmp directly */ #undef stricmp |