We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b961fe commit d5c85c6Copy full SHA for d5c85c6
include/traits.hpp
@@ -75,8 +75,6 @@ VIEW_DATA_DIMS(8, T ********)
75
// the first string identifier is the "canonical name" (i.e. what gets encoded)
76
// and the remaining string entries are used to generate aliases
77
//
78
-typedef uint8_t bool_t;
79
-
80
VIEW_DATA_TYPE(int8_t, Int8, "int8", "signed_char")
81
VIEW_DATA_TYPE(int16_t, Int16, "int16", "short")
82
VIEW_DATA_TYPE(int32_t, Int32, "int32", "int")
@@ -87,8 +85,7 @@ VIEW_DATA_TYPE(uint32_t, Uint32, "uint32", "unsigned", "unsigned_int")
87
85
VIEW_DATA_TYPE(uint64_t, Uint64, "uint64", "unsigned_long")
88
86
VIEW_DATA_TYPE(float, Float32, "float32", "float")
89
VIEW_DATA_TYPE(double, Float64, "float64", "double")
90
-// TODO: real bool type instead of alias
91
-VIEW_DATA_TYPE(bool_t, Bool, "bool", "bool_")
+VIEW_DATA_TYPE(bool, Bool, "bool", "bool_")
92
93
//----------------------------------------------------------------------------//
94
// <data-type> <enum> <string identifiers>
0 commit comments