6 #ifndef TURI_IS_POD_HPP 7 #define TURI_IS_POD_HPP 30 static constexpr
bool value = std::is_scalar<T>::value ||
31 std::is_base_of<IS_POD_TYPE, T>::value;
Inheriting from this type will force the serializer to treat the derived type as a POD type...
Tests if T is a POD type.