From bbcbbc8e821fbadbbb3239ba769a6c7fed9fd33a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Wed, 30 Jul 2008 18:12:31 +0000 Subject: [PATCH] Updated the predefined c++-template-depth Boost Build feature values to include all multiples of 64 up to 1024. [SVN r47892] --- v2/tools/builtin.jam | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v2/tools/builtin.jam b/v2/tools/builtin.jam index f05b9c51e..8849e5609 100644 --- a/v2/tools/builtin.jam +++ b/v2/tools/builtin.jam @@ -162,8 +162,8 @@ feature.feature warnings-as-errors : # feature.feature c++-template-depth : - [ numbers.range 128 1024 : 128 ] - [ numbers.range 20 1000 : 10 ] + [ numbers.range 64 1024 : 64 ] + [ numbers.range 20 1000 : 10 ] # Maximum template instantiation depth guaranteed for ANSI/ISO C++ # conforming programs. 17