From 12787e14f2f1ccb685ecde4397dd9725d35a7496 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Mon, 24 Nov 2008 09:13:22 +0000 Subject: [PATCH] Make qcc has the same default template depth limit as gcc. Suggested by Niklas Angare. [SVN r49912] --- src/tools/qcc.jam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/qcc.jam b/src/tools/qcc.jam index c01256158..096e09c77 100644 --- a/src/tools/qcc.jam +++ b/src/tools/qcc.jam @@ -96,7 +96,7 @@ rule compile.c++ local template-depth = [ on $(1) return $(TEMPLATE_DEPTH) ] ; if ! $(template-depth) { - TEMPLATE_DEPTH on $(1) = 100 ; + TEMPLATE_DEPTH on $(1) = 128 ; } }