From 4653d37a3bbbd1bec02b18f712df271e343cce88 Mon Sep 17 00:00:00 2001 From: Eli Bendersky Date: Thu, 27 Jul 2017 14:04:11 -0700 Subject: [PATCH] [XLA] Change type to appease GPU builds. PiperOrigin-RevId: 163384927 --- tensorflow/compiler/xla/tests/xla_internal_test_main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/compiler/xla/tests/xla_internal_test_main.cc b/tensorflow/compiler/xla/tests/xla_internal_test_main.cc index c72245509fe..9078c5f07f3 100644 --- a/tensorflow/compiler/xla/tests/xla_internal_test_main.cc +++ b/tensorflow/compiler/xla/tests/xla_internal_test_main.cc @@ -18,7 +18,7 @@ limitations under the License. GTEST_API_ int main(int argc, char** argv) { std::vector flag_list; xla::legacy_flags::AppendDebugOptionsFlags(&flag_list); - string usage = tensorflow::Flags::Usage(argv[0], flag_list); + auto usage = tensorflow::Flags::Usage(argv[0], flag_list); if (!tensorflow::Flags::Parse(&argc, argv, flag_list)) { LOG(ERROR) << "\n" << usage; return 2;