Skip to content

Commit

Permalink
generator clang tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
scotthart committed Jun 28, 2024
1 parent ff7b2d5 commit 55c7658
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions generator/standalone_main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

0 comments on commit 55c7658

Please sign in to comment.