Some fixes found by resharper c++

This commit is contained in:
Jason Turner
2016-01-25 16:41:11 -07:00
parent 7ed5c18a86
commit f82f6c2068
6 changed files with 15 additions and 16 deletions

View File

@@ -397,7 +397,7 @@ class Short_Comparison_Test {
public:
Short_Comparison_Test() : value_(5) {}
short get_value() { return value_; }
short get_value() const { return value_; }
short value_;
};