Un-const Optional class members.

This commit is contained in:
Jared Boone 2016-01-22 13:40:15 -08:00
parent b70138ad58
commit 54fb85a9d0

View File

@ -42,8 +42,8 @@ public:
T value() const { return value_; };
private:
const T value_;
const bool valid_;
T value_;
bool valid_;
};
class TransponderID {