mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
fix warnings
This commit is contained in:
@ -33,9 +33,9 @@
|
||||
class Buffer
|
||||
{
|
||||
private:
|
||||
enum { BUFFER_INITIAL_SIZE= 4096 };
|
||||
static const uint BUFFER_INITIAL_SIZE;
|
||||
/* maximum buffer size is 16Mb */
|
||||
enum { MAX_BUFFER_SIZE= 16777216 };
|
||||
static const uint MAX_BUFFER_SIZE;
|
||||
size_t buffer_size;
|
||||
/* Error flag. Triggered if we get an error of some kind */
|
||||
int error;
|
||||
|
Reference in New Issue
Block a user