Merge "Fix class/struct mismatch." am: e91257f445
am: 6086fd39b3
Change-Id: I9ecdeadef84475e1bf028d05f8d5bc9b6a67a556
diff --git a/keystore/KeyStore.h b/keystore/KeyStore.h
index 25ff3a5..69a02ae 100644
--- a/keystore/KeyStore.h
+++ b/keystore/KeyStore.h
@@ -62,7 +62,7 @@
} // namespace keystore
namespace std {
-template <typename T, size_t count> class tuple_size<keystore::Devices<T, count>> {
+template <typename T, size_t count> struct tuple_size<keystore::Devices<T, count>> {
public:
static constexpr size_t value = std::tuple_size<std::array<T, count>>::value;
};