From 5a07dbc89f1459c57b44e10248669a94e7881525 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 27 Nov 2020 17:57:48 +0100 Subject: Use std::vector::emplace_back() --- .clang-tidy | 2 -- src/Configuration.cpp | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.clang-tidy b/.clang-tidy index 66585b8..03effaf 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -9,10 +9,8 @@ Checks: > -*-special-member-functions, -*-unused-macros, -*-uppercase-literal-suffix, - -*-use-emplace, -*-use-equals-default, -*-use-override, - -*-use-override, -*-vararg, -bugprone-branch-clone, -bugprone-forward-declaration-namespace, diff --git a/src/Configuration.cpp b/src/Configuration.cpp index e95b727..cf51d91 100644 --- a/src/Configuration.cpp +++ b/src/Configuration.cpp @@ -174,7 +174,7 @@ get_filenames() } // Current directory (bundle or last-ditch effort) - filenames.push_back("patchagerc"); + filenames.emplace_back("patchagerc"); return filenames; } -- cgit v1.2.1