aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp/operators.def
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/operators.def
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/operators.def')
-rw-r--r--gcc/cp/operators.def12
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/cp/operators.def b/gcc/cp/operators.def
index e35144b..845dbbd 100644
--- a/gcc/cp/operators.def
+++ b/gcc/cp/operators.def
@@ -1,8 +1,8 @@
/* -*-C-*-
-
+
This file contains definitions of the various C++ operators,
including both overloadable operators (like `+') and
- non-overloadable operators (like the `?:' ternary operator).
+ non-overloadable operators (like the `?:' ternary operator).
Written by Mark Mitchell <mark@codesourcery.com>
Copyright (C) 2000, 2001, 2002, 2003, 2005 Free Software Foundation, Inc.
@@ -32,7 +32,7 @@ Boston, MA 02111-1307, USA. */
preceding `operator'. This is the name that would be given in
the source program. For `operator +', for example, this would be
`+'.
-
+
CODE
The tree_code for this operator. For `operator +', for example,
@@ -47,7 +47,7 @@ Boston, MA 02111-1307, USA. */
would be "pl".
ARITY
-
+
The arity of the operator, or -1 if any arity is allowed. (As
for `operator ()'.) Postincrement and postdecrement operators
are marked as binary.
@@ -57,12 +57,12 @@ Boston, MA 02111-1307, USA. */
A boolean value. If nonzero, this is an assignment operator.
Before including this file, you should define DEFOPERATOR
- to take these arguments.
+ to take these arguments.
There is code (such as in grok_op_properties) that depends on the
order the operators are presented in this file. In particular,
unary operators must precede binary operators. */
-
+
/* Use DEF_SIMPLE_OPERATOR to define a non-assignment operator. Its
arguments are as for DEF_OPERATOR, but there is no need to provide
an ASSIGNMENT_P argument; it is always zero. */