File tree Expand file tree Collapse file tree 3 files changed +4
-8
lines changed Expand file tree Collapse file tree 3 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -731,7 +731,7 @@ $(GNAME Destructor):
731
731
)
732
732
733
733
$(P Objects referenced from the data segment never get collected
734
- by the GC .
734
+ by the gc .
735
735
)
736
736
737
737
$(H2 $(LNAME2 static-constructor, Static Constructors))
Original file line number Diff line number Diff line change @@ -288,7 +288,7 @@ struct Foo
288
288
289
289
$(LI Do not use byte-by-byte memory copies to copy pointer values.
290
290
This may result in intermediate conditions where there is
291
- not a valid pointer, and if the GC pauses the thread in such a
291
+ not a valid pointer, and if the gc pauses the thread in such a
292
292
condition, it can corrupt memory.
293
293
Most implementations of $(D memcpy()) will work since the
294
294
internal implementation of it does the copy in aligned chunks
@@ -401,7 +401,7 @@ $(H2 $(LNAME2 gc_config, Configuring the Garbage Collector))
401
401
$(UL
402
402
$(LI disable:0|1 - start disabled)
403
403
$(LI profile:0|1 - enable profiling with summary when terminating program)
404
- $(LI gc:conservative|precise|manual - select GC implementation (default = conservative))
404
+ $(LI gc:conservative|precise|manual - select gc implementation (default = conservative))
405
405
$(LI initReserve:N - initial memory to reserve in MB)
406
406
$(LI minPoolSize:N - initial and minimum pool size in MB)
407
407
$(LI maxPoolSize:N - maximum pool size in MB)
Original file line number Diff line number Diff line change @@ -796,10 +796,8 @@ $(GNAME TemplateSequenceParameter):
796
796
}
797
797
}
798
798
799
- template write(Args...)
799
+ template write(Args...) // Args is a TypeSeq
800
800
{
801
- pragma(msg, Args); // Args is a TypeSeq
802
-
803
801
void f(Args args) // args is a ValueSeq
804
802
{
805
803
writeln("args are ", args);
@@ -824,8 +822,6 @@ $(GNAME TemplateSequenceParameter):
824
822
to dynamically change, add, or remove elements either at compile-time or run-time.
825
823
)
826
824
827
- $(H3 $(LNAME2 typeseq_deduction, Type Sequence Deduction))
828
-
829
825
$(P Type sequences can be deduced from the trailing parameters
830
826
of an $(RELATIVE_LINK2 ifti, implicitly instantiated) function template:)
831
827
You can’t perform that action at this time.
0 commit comments