1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

cleanup: formatting

also avoid an oxymoron of using `MYSQL_PLUGIN_IMPORT` under
`#ifdef MYSQL_SERVER`, and empty_clex_str is so trivial that a plugin
can define it if needed.
This commit is contained in:
Sergei Golubchik
2021-06-09 18:31:23 +02:00
parent 89342a3bd5
commit 3648b333c7
13 changed files with 65 additions and 90 deletions

View File

@ -51,11 +51,11 @@ public:
int level;
String field;
String value;
XML_TAG(int l, String f, String v);
XML_TAG(int l, const String &f, const String &v);
};
XML_TAG::XML_TAG(int l, String f, String v)
XML_TAG::XML_TAG(int l, const String &f, const String &v)
{
level= l;
field.append(f);