Index: testing/gtest-support.h |
diff --git a/testing/gtest-support.h b/testing/gtest-support.h |
index 66b1094ff4d1869e4cee2b93d69cac9a07f1e7cb..7be79b521f86d9d527813e6dc44ef1ab38e44c78 100644 |
--- a/testing/gtest-support.h |
+++ b/testing/gtest-support.h |
@@ -16,14 +16,17 @@ namespace internal { |
inline std::string GetTypeName<type>() { \ |
return #type; \ |
} |
-GET_TYPE_NAME(int8_t) |
-GET_TYPE_NAME(uint8_t) |
-GET_TYPE_NAME(int16_t) |
-GET_TYPE_NAME(uint16_t) |
-GET_TYPE_NAME(int32_t) |
-GET_TYPE_NAME(uint32_t) |
-GET_TYPE_NAME(int64_t) |
-GET_TYPE_NAME(uint64_t) |
+GET_TYPE_NAME(bool) |
+GET_TYPE_NAME(signed char) |
+GET_TYPE_NAME(unsigned char) |
+GET_TYPE_NAME(short) |
+GET_TYPE_NAME(unsigned short) |
+GET_TYPE_NAME(int) |
+GET_TYPE_NAME(unsigned int) |
+GET_TYPE_NAME(long) |
+GET_TYPE_NAME(unsigned long) |
+GET_TYPE_NAME(long long) |
+GET_TYPE_NAME(unsigned long long) |
GET_TYPE_NAME(float) |
GET_TYPE_NAME(double) |
#undef GET_TYPE_NAME |