mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
cleanup: Static_binary_string need not take non-const double parameter
Convert the parameter to const as the function won't modify the pointer value.
This commit is contained in:
@ -345,7 +345,7 @@ public:
|
||||
void qs_append(const char *str, size_t len);
|
||||
void qs_append_hex(const char *str, uint32 len);
|
||||
void qs_append(double d);
|
||||
void qs_append(double *d);
|
||||
void qs_append(const double *d);
|
||||
inline void qs_append(const char c)
|
||||
{
|
||||
Ptr[str_length]= c;
|
||||
|
Reference in New Issue
Block a user