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:
@ -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);
|
||||
|
Reference in New Issue
Block a user