Remove unneeded semicolon

This commit is contained in:
Gregory A Lundberg 2017-11-07 15:18:44 -06:00
parent a324534a6a
commit 6a92a0fdcd

View file

@ -31,7 +31,7 @@ public:
};
enum TYPE { TYPE_PRESS, TYPE_CHECK, TYPE_TURBO, TYPE_IMAGE, TYPE_RADIO };
TYPE get_type() const { return type_; };
TYPE get_type() const { return type_; }
enum SPACE_CONSUMPTION { DEFAULT_SPACE, MINIMUM_SPACE };