From 55c76585e3aa824d028f726f8931bbd7790b6fd9 Mon Sep 17 00:00:00 2001 From: Scott Hart Date: Fri, 28 Jun 2024 18:15:19 -0400 Subject: [PATCH] generator clang tidy --- generator/standalone_main.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/generator/standalone_main.cc b/generator/standalone_main.cc index 19dd336f3f0ed..d6d04cb60ecc1 100644 --- a/generator/standalone_main.cc +++ b/generator/standalone_main.cc @@ -185,8 +185,9 @@ int WriteInstallDirectories( // TODO(#14402): Consider enhancing the generator_config.proto to allow custom // libs to be specified. OTOH, it may not be needed often enough to justify. - install_directories.push_back("./lib64/cmake/google_cloud_cpp_bigquery_job"); - install_directories.push_back( + install_directories.emplace_back( + "./lib64/cmake/google_cloud_cpp_bigquery_job"); + install_directories.emplace_back( "./lib64/cmake/google_cloud_cpp_bigquery_job_mocks"); std::sort(install_directories.begin(), install_directories.end());