From b81522b18726d6cac2e91fa8bb79947e58dd4c98 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 19 Apr 2017 18:32:14 +0300 Subject: Fix GCC warning --- butl/process-run.txx | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/butl/process-run.txx b/butl/process-run.txx index 9de601f..1d25af1 100644 --- a/butl/process-run.txx +++ b/butl/process-run.txx @@ -28,6 +28,14 @@ namespace butl int out, int err); + template + inline const char* + process_args_as_wrapper (V& v, const T& x, std::string& storage) + { + process_args_as (v, x, storage); + return nullptr; + } + template cmd; cmd.push_back (pp.recall_string ()); - auto call = [&cmd] (const auto& x, std::string& s) -> const char* - { - process_args_as (cmd, x, s); - return nullptr; - }; - std::string storage[args_size != 0 ? args_size : 1]; - const char* dummy[] = {nullptr, call (args, storage[index])... }; + + const char* dummy[] = { + nullptr, process_args_as_wrapper (cmd, args, storage[index])... }; cmd.push_back (dummy[0]); // NULL (and get rid of unused warning). -- cgit v1.1