Skip to content

Commit

Permalink
Fix anchor links.
Browse files Browse the repository at this point in the history
  • Loading branch information
Llammissar committed Feb 8, 2013
1 parent 20152e4 commit 1bd1a99
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 22 deletions.
20 changes: 10 additions & 10 deletions class.dd
Expand Up @@ -66,22 +66,22 @@ $(UL
$(LI dynamic fields)
$(LI static fields)
$(LI types)
$(LI $(LINK2 member-functions, member functions)
$(LI $(RELATIVE_LINK2 member-functions, member functions)
$(UL
$(LI static member functions)
$(LI $(DDSUBLINK function, virtual-functions, Virtual Functions))
$(LI $(LINK2 synchronized-functions, Synchronized Functions))
$(LI $(LINK2 constructors, Constructors))
$(LI $(LINK2 destructors, Destructors))
$(LI $(LINK2 StaticConstructor, Static Constructors))
$(LI $(LINK2 StaticDestructor, Static Destructors))
$(LI $(RELATIVE_LINK2 synchronized-functions, Synchronized Functions))
$(LI $(RELATIVE_LINK2 constructors, Constructors))
$(LI $(RELATIVE_LINK2 destructors, Destructors))
$(LI $(RELATIVE_LINK2 StaticConstructor, Static Constructors))
$(LI $(RELATIVE_LINK2 StaticDestructor, Static Destructors))
$(LI $(GLINK SharedStaticConstructor)s)
$(LI $(GLINK SharedStaticDestructor)s)
$(LI $(LINK2 invariants, Class Invariants))
$(LI $(RELATIVE_LINK2 invariants, Class Invariants))
$(LI $(DDSUBLINK unittest, unittest, Unit Tests))
$(LI $(LINK2 allocators, Class Allocators))
$(LI $(LINK2 deallocators, Class Deallocators))
$(LI $(LINK2 AliasThis, Alias This))
$(LI $(RELATIVE_LINK2 allocators, Class Allocators))
$(LI $(RELATIVE_LINK2 deallocators, Class Deallocators))
$(LI $(RELATIVE_LINK2 AliasThis, Alias This))
)
)
)
Expand Down
6 changes: 3 additions & 3 deletions expression.dd
Expand Up @@ -1033,9 +1033,9 @@ $(GNAME PrimaryExpression):
$(D .)$(IDENTIFIER)
$(GLINK2 template, TemplateInstance)
$(D .)$(GLINK2 template, TemplateInstance)
$(LINK2 this, $(D this))
$(LINK2 super, $(D super))
$(LINK2 null, $(D null))
$(RELATIVE_LINK2 this, $(D this))
$(RELATIVE_LINK2 super, $(D super))
$(RELATIVE_LINK2 null, $(D null))
$(D true)
$(D false)
$(D $)
Expand Down
8 changes: 4 additions & 4 deletions function.dd
Expand Up @@ -794,7 +794,7 @@ foo(4); // same as foo(4, 3);
parameters must also have default values.
)

$(H3 $(LNAME2 variadicVariadic Functions))
$(H3 $(LNAME2 variadic, Variadic Functions))

Functions taking a variable number of arguments are called
variadic functions. A variadic function can take one of
Expand Down Expand Up @@ -1722,9 +1722,9 @@ $(H3 $(LNAME2 function-attribute-inference, Function Attribute Inference))
$(P $(GLINK2 expression, FunctionLiteral)s and
$(DDSUBLINK template, function-templates, function template)s, since their function bodies
are always present, infer the
$(LINK2 pure-functions, $(D pure)),
$(LINK2 nothrow-functions, $(D nothrow)), and
$(LINK2 safe-functions, $(D @safe)) attributes unless
$(RELATIVE_LINK2 pure-functions, $(D pure)),
$(RELATIVE_LINK2 nothrow-functions, $(D nothrow)), and
$(RELATIVE_LINK2 safe-functions, $(D @safe)) attributes unless
specifically overridden.
)

Expand Down
10 changes: 5 additions & 5 deletions struct.dd
Expand Up @@ -36,20 +36,20 @@ $(SPEC_S Structs and Unions,
$(UNCHECK), $(CHECK), $(CHECK))
$(TROW virtual member functions, $(UNCHECK), $(CHECK),
$(UNCHECK), $(CHECK), $(CHECK))
$(TROW $(LINK2 Struct-Constructor, constructors), $(CHECK),
$(TROW $(RELATIVE_LINK2 Struct-Constructor, constructors), $(CHECK),
$(CHECK), $(UNCHECK), $(CHECK), $(CHECK))
$(TROW $(LINK2 StructPostblit, postblit)/copy constructors,
$(TROW $(RELATIVE_LINK2 StructPostblit, postblit)/copy constructors,
$(CHECK), $(UNCHECK), $(UNCHECK), $(CHECK), $(CHECK))
$(TROW $(LINK2 StructDestructor, destructors), $(CHECK),
$(TROW $(RELATIVE_LINK2 StructDestructor, destructors), $(CHECK),
$(CHECK), $(UNCHECK), $(CHECK), $(CHECK))
$(TROW $(GLINK2 class, SharedStaticConstructor)s, $(CHECK),
$(CHECK), $(UNCHECK), $(UNCHECK), $(UNCHECK))
$(TROW $(GLINK2 class, SharedStaticDestructor)s, $(CHECK),
$(CHECK), $(UNCHECK), $(UNCHECK), $(UNCHECK))
$(TROW RAII, $(CHECK), $(CHECK), $(UNCHECK), $(CHECK), $(CHECK))
$(TROW $(LINK2 AssignOverload, assign overload), $(CHECK),
$(TROW $(RELATIVE_LINK2 AssignOverload, assign overload), $(CHECK),
$(UNCHECK), $(UNCHECK), $(CHECK), $(CHECK))
$(TROW $(LINK2 StructLiteral, literals), $(CHECK), $(UNCHECK),
$(TROW $(RELATIVE_LINK2 StructLiteral, literals), $(CHECK), $(UNCHECK),
$(UNCHECK), $(UNCHECK), $(UNCHECK))
$(TROW operator overloading, $(CHECK), $(CHECK), $(UNCHECK),
$(CHECK), $(CHECK))
Expand Down

0 comments on commit 1bd1a99

Please sign in to comment.