diff options
Diffstat (limited to 'sql/parse_file.h')
-rw-r--r-- | sql/parse_file.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/parse_file.h b/sql/parse_file.h index 3ceb8458039..20e3051e671 100644 --- a/sql/parse_file.h +++ b/sql/parse_file.h @@ -97,12 +97,12 @@ class File_parser: public Sql_alloc { char *buff, *start, *end; LEX_STRING file_type; - my_bool content_ok; + bool content_ok; public: File_parser() :buff(0), start(0), end(0), content_ok(0) { file_type.str= 0; file_type.length= 0; } - my_bool ok() { return content_ok; } + bool ok() { return content_ok; } LEX_STRING *type() { return &file_type; } my_bool parse(uchar* base, MEM_ROOT *mem_root, struct File_option *parameters, uint required, |