Chromium Code Reviews| Index: base/version.h |
| diff --git a/base/version.h b/base/version.h |
| index b3012eb921b1e62a803b681f03954fbb17d14cea..a486eaeae7be541a8fe034a2798e17a39bfbc305 100644 |
| --- a/base/version.h |
| +++ b/base/version.h |
| @@ -57,10 +57,10 @@ class BASE_EXPORT Version { |
| // Return the string representation of this version. |
| const std::string GetString() const; |
| - const std::vector<uint16>& components() const { return components_; } |
| + const std::vector<uint32>& components() const { return components_; } |
|
grt (UTC plus 2)
2015/03/09 13:19:49
please use uint32_t (and #include <stdint.h>) as p
Will Harris
2015/03/09 22:52:18
Done.
|
| private: |
| - std::vector<uint16> components_; |
| + std::vector<uint32> components_; |
| }; |
| } // namespace base |