base: remove unused enum from object pool

Ref #1443
This commit is contained in:
Stefan Kalkowski 2015-05-19 14:07:16 +02:00 committed by Christian Helmuth
parent 217f62b89d
commit a93266548f
1 changed files with 1 additions and 3 deletions

View File

@ -86,12 +86,10 @@ class Genode::Object_pool
bool is_dead(bool set_dead = false) {
return (set_dead ? (_dead = true) : _dead); }
bool is_ref_zero() { return _ref <= 0; }
bool is_ref_zero() { return _ref <= 0; }
public:
enum { OBJ_ID_INVALID = 0 };
/**
* Constructors
*/