| 83 | // Specialization for POD type |
| 84 | template <typename T> |
| 85 | bool DecodeVariantImpl(VariantTensorData data, |
| 86 | TypeResolver<T, true /* is_pod */, false /* Tensor */, |
| 87 | false /* protobuf */>, |
| 88 | T* value) { |
| 89 | return data.get_metadata(value); |
| 90 | } |
| 91 | |
| 92 | // Specialization for tensorflow::Tensor |
| 93 | template <typename T> |
no test coverage detected