From d90ac405ae50f84a3cf4ba0b806cca1c89f81cff Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Thu, 26 Jul 2018 14:12:56 +0300 Subject: Make project variable to be of project_name type --- build2/name.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'build2/name.hxx') diff --git a/build2/name.hxx b/build2/name.hxx index 54fd130..e688aed 100644 --- a/build2/name.hxx +++ b/build2/name.hxx @@ -33,7 +33,7 @@ namespace build2 // struct name { - optional proj; + optional proj; dir_path dir; string type; string value; @@ -48,7 +48,7 @@ namespace build2 name (dir_path d, string t, string v) : dir (move (d)), type (move (t)), value (move (v)) {} - name (optional p, dir_path d, string t, string v) + name (optional p, dir_path d, string t, string v) : proj (move (p)), dir (move (d)), type (move (t)), value (move (v)) {} bool -- cgit v1.1