From 0d7c7f2c8bc044519b2936c9891d65701b7762bb Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 23 Jan 2017 13:58:42 +0200 Subject: Make rules const throughout --- build2/cc/module.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'build2/cc') diff --git a/build2/cc/module.cxx b/build2/cc/module.cxx index e63f740..3e20694 100644 --- a/build2/cc/module.cxx +++ b/build2/cc/module.cxx @@ -363,9 +363,9 @@ namespace build2 // // @@ Should we check if install module was loaded (see bin)? // - compile& cr (*this); - link& lr (*this); - install& ir (*this); + const compile& cr (*this); + const link& lr (*this); + const install& ir (*this); r.insert (perform_update_id, x_compile, cr); r.insert (perform_clean_id, x_compile, cr); -- cgit v1.1