From a243f23b2550db4d0be5722343651f0b23a22a5f Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 2 May 2001 12:56:09 +0000 Subject: [PATCH] Allow ":" (and in particular "::") inside template type list. git-svn-id: https://svn.dealii.org/trunk@4519 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/common/scripts/forward_declarations.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/common/scripts/forward_declarations.pl b/deal.II/common/scripts/forward_declarations.pl index 3c81bdeab9..6fc3a2fd80 100644 --- a/deal.II/common/scripts/forward_declarations.pl +++ b/deal.II/common/scripts/forward_declarations.pl @@ -76,8 +76,8 @@ sub parse_class_declarations { if ( /^\s*((template\s*< ( - ([-\w,_=\s] | - <([-\w_,=\s])+> )* + ([-\w,_=:\s] | + <([-\w_,=:\s])+> )* )>\s*)? (class|struct))(.*)/x ) { # this is the declaration of a class, possibly a template -- 2.39.5