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

fix warnings

This commit is contained in:
petr@mysql.com
2005-09-20 03:14:07 +04:00
parent 654277084c
commit 6168d0d52c
4 changed files with 8 additions and 5 deletions

View File

@ -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;