From 0ef4fd5e793f70dcd3d464c5e09eb78cfeaa05f1 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Fri, 19 Oct 2007 19:18:32 +0000 Subject: [PATCH] Remove project-target.intern-constants as unused. [SVN r40197] --- src/build/targets.jam | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/src/build/targets.jam b/src/build/targets.jam index 0b0f6c7c3..9cddb74e5 100644 --- a/src/build/targets.jam +++ b/src/build/targets.jam @@ -506,21 +506,7 @@ class project-target : abstract-target [ RULENAMES project-rules ] ] ; IMPORT $(parent-module) : $(user-rules) : $(this-module) : $(user-rules) ; EXPORT $(this-module) : $(user-rules) ; - } - - - # Intern the constants from this project into the specified module. - # - rule intern-constants ( - target-module # The module to intern into. - ) - { - for local c in $(self.constants) - { - modules.poke $(target-module) : $(c) : $(self.constant.$(c)) ; - } - } - + } }