aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp/cp-tree.def
diff options
context:
space:
mode:
authorMike Stump <mrs@gcc.gnu.org>2005-06-15 00:41:35 +0000
committerMike Stump <mrs@gcc.gnu.org>2005-06-15 00:41:35 +0000
commit0cbd7506455e100f19b3bc4f74d1f8e62e5939f2 (patch)
treed8691b706a5d24462549fd36e73e1589e7ac65d9 /gcc/cp/cp-tree.def
parentcbcabe5bedf6d06bf37e4be778a4fb633e5c7c2a (diff)
downloadgcc-0cbd7506455e100f19b3bc4f74d1f8e62e5939f2.zip
gcc-0cbd7506455e100f19b3bc4f74d1f8e62e5939f2.tar.gz
gcc-0cbd7506455e100f19b3bc4f74d1f8e62e5939f2.tar.bz2
Canonicalize whitespace.
From-SVN: r100965
Diffstat (limited to 'gcc/cp/cp-tree.def')
-rw-r--r--gcc/cp/cp-tree.def16
1 files changed, 8 insertions, 8 deletions
diff --git a/gcc/cp/cp-tree.def b/gcc/cp/cp-tree.def
index 833ad33..82e3939 100644
--- a/gcc/cp/cp-tree.def
+++ b/gcc/cp/cp-tree.def
@@ -108,17 +108,17 @@ DEFTREECODE (BASELINK, "baselink", tcc_exceptional, 0)
/* Template definition. The following fields have the specified uses,
although there are other macros in cp-tree.h that should be used for
accessing this data.
- DECL_ARGUMENTS template parm vector
- DECL_TEMPLATE_INFO template text &c
+ DECL_ARGUMENTS template parm vector
+ DECL_TEMPLATE_INFO template text &c
DECL_VINDEX list of instantiations already produced;
only done for functions so far
For class template:
- DECL_INITIAL associated templates (methods &c)
- DECL_TEMPLATE_RESULT null
+ DECL_INITIAL associated templates (methods &c)
+ DECL_TEMPLATE_RESULT null
For non-class templates:
TREE_TYPE type of object to be constructed
- DECL_TEMPLATE_RESULT decl for object to be created
- (e.g., FUNCTION_DECL with tmpl parms used)
+ DECL_TEMPLATE_RESULT decl for object to be created
+ (e.g., FUNCTION_DECL with tmpl parms used)
*/
DEFTREECODE (TEMPLATE_DECL, "template_decl", tcc_declaration, 0)
@@ -132,7 +132,7 @@ DEFTREECODE (TEMPLATE_DECL, "template_decl", tcc_declaration, 0)
struct S
{
template <class U, // Index 0, Level 2.
- class V> // Index 1, Level 2.
+ class V> // Index 1, Level 2.
void f();
};
@@ -148,7 +148,7 @@ DEFTREECODE (TEMPLATE_DECL, "template_decl", tcc_declaration, 0)
struct S<int>
{
template <class U, // Index 0, Level 1, Orig Level 2
- class V> // Index 1, Level 1, Orig Level 2
+ class V> // Index 1, Level 1, Orig Level 2
void f();
};