Skip to content
Permalink
Browse files
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.
  • Loading branch information
abarkov committed Apr 23, 2019
1 parent 279a907 commit 9dcfd6b
Showing 1 changed file with 0 additions and 5 deletions.
@@ -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);
}
};


0 comments on commit 9dcfd6b

Please sign in to comment.