aboutsummaryrefslogtreecommitdiff
path: root/cc/key_manager.h
diff options
context:
space:
mode:
authorThai Duong <thaidn@google.com>2017-05-18 16:52:02 +0000
committerThai Duong <thaidn@google.com>2017-05-18 13:26:55 -0700
commit6faa44c454264e68a7b93ca8616211e33b988064 (patch)
tree418517a33f0ac592d151b3bcbd0db4cf3a97be53 /cc/key_manager.h
parent29620208c2f3dcb23f04346c7d09b374b95db026 (diff)
downloadtink-6faa44c454264e68a7b93ca8616211e33b988064.tar.gz
Merge "Use unsigned integers when possible, including in protobufs."
ORIGINAL_AUTHOR=Thai Duong <thaidn@google.com> GitOrigin-RevId: bd54a12ce77ec6f535eac8a4660b365828854356
Diffstat (limited to 'cc/key_manager.h')
-rw-r--r--cc/key_manager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cc/key_manager.h b/cc/key_manager.h
index b5b72ee5b..8ea34b0d4 100644
--- a/cc/key_manager.h
+++ b/cc/key_manager.h
@@ -59,7 +59,7 @@ class KeyManager {
virtual const std::string& get_key_type() const = 0;
// Returns the version of this key manager.
- virtual int get_version() const = 0;
+ virtual uint32_t get_version() const = 0;
bool DoesSupport(google::protobuf::StringPiece key_type) const {
return (key_type == get_key_type());