Use enum for class constant
This commit is contained in:
parent
cf7edf52c3
commit
dd7c628ed1
|
@ -477,7 +477,7 @@ struct stack_t
|
||||||
unsigned int get_count () const { return count; }
|
unsigned int get_count () const { return count; }
|
||||||
bool is_empty () const { return count == 0; }
|
bool is_empty () const { return count == 0; }
|
||||||
|
|
||||||
static const unsigned int kSizeLimit = LIMIT;
|
enum { kSizeLimit = LIMIT };
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
bool error;
|
bool error;
|
||||||
|
|
Loading…
Reference in New Issue