Index: base/version.h |
diff --git a/base/version.h b/base/version.h |
index b3012eb921b1e62a803b681f03954fbb17d14cea..814acaa2b4ed83f29b5aafe47b6c48b649ec7ed0 100644 |
--- a/base/version.h |
+++ b/base/version.h |
@@ -5,6 +5,7 @@ |
#ifndef BASE_VERSION_H_ |
#define BASE_VERSION_H_ |
+#include <stdint.h> |
#include <string> |
#include <vector> |
@@ -57,10 +58,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_t>& components() const { return components_; } |
private: |
- std::vector<uint16> components_; |
+ std::vector<uint32_t> components_; |
}; |
} // namespace base |