mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
MDEV-9465 The constructor StringBuffer(const char *str, size_t length, const CHARSET_INFO *cs) looks suspicious
Removing the suspicious constructor, it's not used in the code anyway.
This commit is contained in:
@ -649,11 +649,6 @@ public:
|
|||||||
{
|
{
|
||||||
length(0);
|
length(0);
|
||||||
}
|
}
|
||||||
StringBuffer(const char *str, size_t length_arg, CHARSET_INFO *cs)
|
|
||||||
: String(buff, buff_sz, cs)
|
|
||||||
{
|
|
||||||
set(str, length_arg, cs);
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user