aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/util/saved_tensor_slice_util.h
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2016-08-10 11:13:52 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-08-10 12:17:38 -0700
commit9cc69c6e86cc8f7fe7698ef4651b48601a35af8e (patch)
treea297ded4862b80e5f4bb7cc135514371d17f9375 /tensorflow/core/util/saved_tensor_slice_util.h
parent428ec7b0441b6f9e3c5066d5dce134e2f6f845a6 (diff)
Updated TensorFlow to account for change in protobuf C++ int64 type
Change: 129895289
Diffstat (limited to 'tensorflow/core/util/saved_tensor_slice_util.h')
-rw-r--r--tensorflow/core/util/saved_tensor_slice_util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/core/util/saved_tensor_slice_util.h b/tensorflow/core/util/saved_tensor_slice_util.h
index 6efa6e5685..3600c22a1d 100644
--- a/tensorflow/core/util/saved_tensor_slice_util.h
+++ b/tensorflow/core/util/saved_tensor_slice_util.h
@@ -110,7 +110,7 @@ TENSOR_PROTO_EXTRACT_TYPE(double, double, double);
TENSOR_PROTO_EXTRACT_TYPE_COMPLEX(complex64, scomplex, float);
TENSOR_PROTO_EXTRACT_TYPE_COMPLEX(complex128, dcomplex, double);
TENSOR_PROTO_EXTRACT_TYPE(int32, int, int32);
-TENSOR_PROTO_EXTRACT_TYPE(int64, int64, int64);
+TENSOR_PROTO_EXTRACT_TYPE(int64, int64, protobuf_int64);
TENSOR_PROTO_EXTRACT_TYPE(uint16, int, int32);
TENSOR_PROTO_EXTRACT_TYPE(uint8, int, int32);
TENSOR_PROTO_EXTRACT_TYPE(int8, int, int32);