Commit 9dcfd6be authored by Alexander Barkov's avatar Alexander Barkov

MDEV-9465 The constructor StringBuffer(const char *str, size_t length, const...

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.
parent 279a907f
......@@ -649,11 +649,6 @@ class StringBuffer : public String
{
length(0);
}
StringBuffer(const char *str, size_t length_arg, CHARSET_INFO *cs)
: String(buff, buff_sz, cs)
{
set(str, length_arg, cs);
}
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment