1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00

cleanup: String::strstr() const

This commit is contained in:
Sergei Golubchik
2023-06-27 14:09:52 +02:00
parent f6e488cc6d
commit a4817e1520
2 changed files with 6 additions and 6 deletions

View File

@@ -677,7 +677,7 @@ bool String::append_with_prefill(const char *s,uint32 arg_length,
}
int Binary_string::strstr(const char *search, uint32 search_length, uint32 offset)
int Binary_string::strstr(const char *search, uint32 search_length, uint32 offset) const
{
if (search_length + offset <= str_length)
{
@@ -703,7 +703,7 @@ skip:
return -1;
}
int Binary_string::strstr(const Binary_string &s, uint32 offset)
int Binary_string::strstr(const Binary_string &s, uint32 offset) const
{
return strstr(s.ptr(), s.length(), offset);
}
@@ -712,7 +712,7 @@ int Binary_string::strstr(const Binary_string &s, uint32 offset)
** Search string from end. Offset is offset to the end of string
*/
int Binary_string::strrstr(const Binary_string &s, uint32 offset)
int Binary_string::strrstr(const Binary_string &s, uint32 offset) const
{
if (s.length() <= offset && offset <= str_length)
{