aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/util
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-08-31 08:17:35 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-08-31 08:23:27 -0700
commitfe01657f67220fc4e4708e579077157e8f525fc1 (patch)
tree2c42a61b41ec258dc8cefc8d804d5766ed4274f0 /tensorflow/core/util
parent4902db818664b62f60c0f9572cc939f596d1c8bc (diff)
Renamed tensorflow::strings::PadSpec enum values to match absl::PadSpec enum values.
This is necessary in order to replace tensorflow::strings::StrCat with absl::StrCat. PiperOrigin-RevId: 211087745
Diffstat (limited to 'tensorflow/core/util')
-rw-r--r--tensorflow/core/util/example_proto_fast_parsing_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/core/util/example_proto_fast_parsing_test.cc b/tensorflow/core/util/example_proto_fast_parsing_test.cc
index 37faa927bf..6c5f80a535 100644
--- a/tensorflow/core/util/example_proto_fast_parsing_test.cc
+++ b/tensorflow/core/util/example_proto_fast_parsing_test.cc
@@ -42,7 +42,7 @@ string SerializedToReadable(string serialized) {
string result;
result += '"';
for (char c : serialized)
- result += strings::StrCat("\\x", strings::Hex(c, strings::ZERO_PAD_2));
+ result += strings::StrCat("\\x", strings::Hex(c, strings::kZeroPad2));
result += '"';
return result;
}