aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDero Gharibian <dero@google.com>2019-08-10 17:47:14 -0700
committerTensorFlower Gardener <gardener@tensorflow.org>2019-08-10 17:56:19 -0700
commit516f7aa757a76650c8f3c5f23e7fe8f51ce68e35 (patch)
tree1cb1fd79d4c242d95ee908c57416965d0cdf170f
parent029fb280b04b1c361b59abdb8c71ec8f6b88376e (diff)
downloadtensorflow-516f7aa757a76650c8f3c5f23e7fe8f51ce68e35.tar.gz
Fully qualify tstring in TF_CALL_tstring macros.
PiperOrigin-RevId: 262757814
-rw-r--r--tensorflow/core/framework/register_types.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/tensorflow/core/framework/register_types.h b/tensorflow/core/framework/register_types.h
index 554133b1fd7..47aab2efb61 100644
--- a/tensorflow/core/framework/register_types.h
+++ b/tensorflow/core/framework/register_types.h
@@ -67,8 +67,8 @@ limitations under the License.
#define TF_CALL_int16(m) m(::tensorflow::int16)
#define TF_CALL_int8(m) m(::tensorflow::int8)
-#define TF_CALL_string(m) m(tstring)
-#define TF_CALL_tstring(m) m(tstring)
+#define TF_CALL_string(m) m(::tensorflow::tstring)
+#define TF_CALL_tstring(m) m(::tensorflow::tstring)
#define TF_CALL_resource(m) m(::tensorflow::ResourceHandle)
#define TF_CALL_variant(m) m(::tensorflow::Variant)
#define TF_CALL_complex64(m) m(::tensorflow::complex64)
@@ -99,8 +99,8 @@ limitations under the License.
#define TF_CALL_int16(m)
#define TF_CALL_int8(m)
-#define TF_CALL_string(m) m(tstring)
-#define TF_CALL_tstring(m) m(tstring)
+#define TF_CALL_string(m) m(::tensorflow::tstring)
+#define TF_CALL_tstring(m) m(::tensorflow::tstring)
#define TF_CALL_resource(m)
#define TF_CALL_variant(m)
#define TF_CALL_complex64(m)