From e5e975934fd25811a79f3fc40ba7f94b7d1cb0b4 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 5 Dec 2017 12:56:44 +0200 Subject: Minor value typification API change --- build2/variable.ixx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'build2/variable.ixx') diff --git a/build2/variable.ixx b/build2/variable.ixx index 634e3dc..d7c4326 100644 --- a/build2/variable.ixx +++ b/build2/variable.ixx @@ -230,12 +230,12 @@ namespace build2 template inline void - typify (value& v, const variable& var) + typify (value& v, const variable* var) { value_type& t (value_traits::value_type); if (v.type != &t) - typify (v, t, &var); + typify (v, t, var); } inline vector_view -- cgit v1.1