From efc8c2124291c7361fad8c3b800bde89a2d8eef6 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Thu, 8 Feb 2018 09:16:32 +0300 Subject: Fix broken id assigning for testscript if-else scopes --- build2/test/script/parser.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build2/test/script/parser.cxx') diff --git a/build2/test/script/parser.cxx b/build2/test/script/parser.cxx index d1e2816..69fe979 100644 --- a/build2/test/script/parser.cxx +++ b/build2/test/script/parser.cxx @@ -783,7 +783,7 @@ namespace build2 // Description. For now we just duplicate it through the entire // chain. // - g->desc = (ps == &root ? move (d) : root->desc); + g->desc = (ps == &root ? d : root->desc); *ps = move (g); } -- cgit v1.1