consistent naming between TypeCode and ArrayType

This commit is contained in:
Michael Davidsaver
2020-03-11 16:54:36 -07:00
parent 4da4c30eae
commit abf366213f
2 changed files with 10 additions and 10 deletions
+6 -6
View File
@@ -63,8 +63,8 @@ std::ostream& operator<<(std::ostream& strm, ArrayType code)
CASE(Int16);
CASE(Int32);
CASE(Int64);
CASE(Float);
CASE(Double);
CASE(Float32);
CASE(Float64);
CASE(Value);
#undef CASE
default:
@@ -87,8 +87,8 @@ std::ostream& operator<<(std::ostream& strm, const shared_array<const void>& arr
CASE(Int16, int16_t);
CASE(Int32, int32_t);
CASE(Int64, int64_t);
CASE(Float, float);
CASE(Double, double);
CASE(Float32, float);
CASE(Float64, double);
CASE(String, std::string);
CASE(Value, Value);
#undef CASE
@@ -110,8 +110,8 @@ std::ostream& operator<<(std::ostream& strm, const shared_array<void>& arr)
CASE(Int16, int16_t);
CASE(Int32, int32_t);
CASE(Int64, int64_t);
CASE(Float, float);
CASE(Double, double);
CASE(Float32, float);
CASE(Float64, double);
CASE(String, std::string);
CASE(Value, Value);
#undef CASE