Fix style

This commit is contained in:
avogar 2023-03-09 18:01:37 +00:00
parent 067bfb8844
commit e5f6ced3d7

View File

@ -18,7 +18,6 @@ namespace ErrorCodes
{ {
extern const int NUMBER_OF_ARGUMENTS_DOESNT_MATCH; extern const int NUMBER_OF_ARGUMENTS_DOESNT_MATCH;
extern const int ILLEGAL_TYPE_OF_ARGUMENT; extern const int ILLEGAL_TYPE_OF_ARGUMENT;
extern const int ILLEGAL_COLUMN;
extern const int BAD_ARGUMENTS; extern const int BAD_ARGUMENTS;
} }
@ -242,7 +241,7 @@ private:
return String(magic_enum::enum_name<SimpleTypes>(type)); return String(magic_enum::enum_name<SimpleTypes>(type));
} }
} }
auto complex_type = magic_enum::enum_value<ComplexTypes>(type_index - simple_types_size); auto complex_type = magic_enum::enum_value<ComplexTypes>(type_index - simple_types_size);
switch (complex_type) switch (complex_type)
{ {