* typeck.c: Fix a comment typo.
authorKazu Hirata <kazu@cs.umass.edu>
Sun, 23 Jan 2005 15:22:18 +0000 (15:22 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Sun, 23 Jan 2005 15:22:18 +0000 (15:22 +0000)
From-SVN: r94113

gcc/cp/ChangeLog
gcc/cp/typeck.c

index 9d10f68d8a7ea57b2b1fca357e8f365f5285447a..8c3d9b346fc23b11262596f6de01557b5a9e27c9 100644 (file)
@@ -1,3 +1,7 @@
+2005-01-23  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * typeck.c: Fix a comment typo.
+
 2005-01-21  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
 
        PR c++/19208
index 0485d65e17f2e8812a685e1fcec3bd4135558d80..ff960a9c24efbe2c08e15c7427f60605f73e7bd4 100644 (file)
@@ -1,6 +1,6 @@
 /* Build expressions with type checking for C++ compiler.
    Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
-   1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
+   1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
    Hacked by Michael Tiemann (tiemann@cygnus.com)
 
 This file is part of GCC.
@@ -2188,7 +2188,7 @@ build_array_ref (tree array, tree idx)
 
       /* Apply integral promotions *after* noticing character types.
         (It is unclear why we do these promotions -- the standard
-        does not say that we should.  In fact, the natual thing would
+        does not say that we should.  In fact, the natural thing would
         seem to be to convert IDX to ptrdiff_t; we're performing
         pointer arithmetic.)  */
       idx = perform_integral_promotions (idx);