Skip to content
Snippets Groups Projects

F move entity

4 files
+ 58
29
Compare changes
  • Side-by-side
  • Inline

Files

+ 3
2
@@ -158,8 +158,7 @@ public:
DataType(ProtoDataType *wrapped) : ScalarProtoMessageWrapper<ProtoDataType>(wrapped) {}
DataType() : ScalarProtoMessageWrapper<ProtoDataType>(static_cast<ProtoDataType *>(nullptr)) {}
/**
* Create an AtomicDataType typed DataType. For references, use the
* std::string constructor.
* Create an AtomicDataType typed DataType. For references, use the std::string constructor.
*/
DataType(AtomicDataType data_type, bool list_type = false)
: ScalarProtoMessageWrapper<ProtoDataType>() {
@@ -182,6 +181,8 @@ public:
}
}
~DataType() = default;
inline static auto ListOf(const AtomicDataType &atomic_data_type) -> DataType {
return DataType(atomic_data_type, true);
}
Loading