aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp/lex.c
diff options
context:
space:
mode:
authorMike Stump <mrs@gcc.gnu.org>2005-06-14 20:01:59 +0000
committerMike Stump <mrs@gcc.gnu.org>2005-06-14 20:01:59 +0000
commitc8094d835f3b458cc3d47195966d944c89208396 (patch)
treee2e8da31d73e8224774fa3715773e9360eaf680f /gcc/cp/lex.c
parent581fb421b9b908bcc7c99a27ae22204066f8509a (diff)
downloadgcc-c8094d835f3b458cc3d47195966d944c89208396.zip
gcc-c8094d835f3b458cc3d47195966d944c89208396.tar.gz
gcc-c8094d835f3b458cc3d47195966d944c89208396.tar.bz2
Remove extra white spacing at end of lines.
From-SVN: r100952
Diffstat (limited to 'gcc/cp/lex.c')
-rw-r--r--gcc/cp/lex.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/cp/lex.c b/gcc/cp/lex.c
index 7e89186..4494cf8c 100644
--- a/gcc/cp/lex.c
+++ b/gcc/cp/lex.c
@@ -633,16 +633,16 @@ unqualified_fn_lookup_error (tree name)
declaration of "f" is available. Historically, G++ and most
other compilers accepted that usage since they deferred all name
lookup until instantiation time rather than doing unqualified
- name lookup at template definition time; explain to the user what
+ name lookup at template definition time; explain to the user what
is going wrong.
Note that we have the exact wording of the following message in
the manual (trouble.texi, node "Name lookup"), so they need to
be kept in synch. */
pedwarn ("there are no arguments to %qD that depend on a template "
- "parameter, so a declaration of %qD must be available",
+ "parameter, so a declaration of %qD must be available",
name, name);
-
+
if (!flag_permissive)
{
static bool hint;
@@ -670,7 +670,7 @@ build_lang_decl (enum tree_code code, tree name, tree type)
/* All nesting of C++ functions is lexical; there is never a "static
chain" in the sense of GNU C nested functions. */
- if (code == FUNCTION_DECL)
+ if (code == FUNCTION_DECL)
DECL_NO_STATIC_CHAIN (t) = 1;
return t;