summaryrefslogtreecommitdiff
path: root/gcc/cp/operators.def
diff options
context:
space:
mode:
authormrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4>2005-06-14 20:01:59 +0000
committermrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4>2005-06-14 20:01:59 +0000
commit9031d10bd672bc998735aa044155b896bf370917 (patch)
treee2e8da31d73e8224774fa3715773e9360eaf680f /gcc/cp/operators.def
parent0d8b6d28629fb8160325a39ac9d005f7d8647a1d (diff)
downloadgcc-9031d10bd672bc998735aa044155b896bf370917.tar.gz
Remove extra white spacing at end of lines.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@100952 138bc75d-0d04-0410-961f-82ee72b054a4
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 e35144b29e3..845dbbd2de9 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. */