From e1c66b9704ca9557031f865cc194a96bcb85a030 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 30 May 2023 11:42:18 +0200 Subject: Fix previous commits to work in C++14 --- libbuild2/build/script/parser.cxx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'libbuild2/build') diff --git a/libbuild2/build/script/parser.cxx b/libbuild2/build/script/parser.cxx index 7e2feb9..d449f4b 100644 --- a/libbuild2/build/script/parser.cxx +++ b/libbuild2/build/script/parser.cxx @@ -2736,7 +2736,8 @@ namespace build2 string t (*l, 0, p); l->erase (0, p + 1); - dyn_targets.emplace_back (move (t), path (move (*l))); + dyn_targets.push_back ( + dynamic_target {move (t), path (move (*l))}); } } @@ -2949,7 +2950,8 @@ namespace build2 // Note: type is resolved later. // - dyn_targets.emplace_back (string (), move (f)); + dyn_targets.push_back ( + dynamic_target {string (), move (f)}); } continue; @@ -3059,7 +3061,8 @@ namespace build2 // Note: type is resolved later. // - dyn_targets.emplace_back (string (), move (f)); + dyn_targets.push_back ( + dynamic_target {string (), move (f)}); } else { -- cgit v1.1