We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2605e24 commit af67865Copy full SHA for af67865
1 file changed
Source/Processors/Channel/MetaData.cpp
@@ -39,6 +39,8 @@ bool checkMetaDataType(MetaDataDescriptor::MetaDataTypes baseType)
39
case MetaDataDescriptor::UINT32: return std::is_same<uint32, T>::value;
40
case MetaDataDescriptor::INT64: return std::is_same<int64, T>::value;
41
case MetaDataDescriptor::UINT64: return std::is_same<uint64, T>::value;
42
+ case MetaDataDescriptor::FLOAT: return std::is_same<float, T>::value;
43
+ case MetaDataDescriptor::DOUBLE: return std::is_same<double, T>::value;
44
default: return false;
45
}
46
0 commit comments