diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index db7eb37c74b..72a723f51cb 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +2006-06-19 Mark Mitchell + + * pt.c (instantiate_template): Fix typo in comment. + 2006-06-19 Richard Guenther * parser.c (CP_LEXER_BUFFER_SIZE): Adjust to assure near diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c index 79183f55ed0..08bda26d6b8 100644 --- a/gcc/cp/pt.c +++ b/gcc/cp/pt.c @@ -9295,9 +9295,10 @@ instantiate_template (tree tmpl, tree targ_ptr, tsubst_flags_t complain) /* Although PROCESSING_TEMPLATE_DECL may be true at this point (because, for example, we have encountered a non-dependent - function call in the body of a template function must determine - which of several overloaded functions will be called), within the - instantiation itself we are not processing a template. */ + function call in the body of a template function and must now + determine which of several overloaded functions will be called), + within the instantiation itself we are not processing a + template. */ saved_processing_template_decl = processing_template_decl; processing_template_decl = 0; /* Substitute template parameters to obtain the specialization. */