Make File::Result::value() const.

This commit is contained in:
Jared Boone 2016-07-24 19:12:09 -07:00
parent 8b02e40602
commit 931853a55f

View File

@ -154,7 +154,7 @@ public:
return type == Type::Error;
}
const T& value() {
const T& value() const {
return value_;
}