Skip to content

Commit 0b5b60f

Browse files
committed
Add short TOC, remove now unused references section
1 parent 16d0771 commit 0b5b60f

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

articles/variadic-function-templates.dd

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ Ddoc
22

33
$(D_S Variadic Templates,
44

5+
$(HEADERNAV_TOC)
6+
57
$(P The problem statement is simple: write a function that
68
takes an arbitrary number of values of arbitrary types,
79
and print those values out one per line in a manner
@@ -27,7 +29,7 @@ $(CONSOLE
2729
language makes possible.
2830
)
2931

30-
$(H3 C++ Solutions)
32+
$(H3 $(LNAME2 cpp-solutions, C++ Solutions))
3133

3234
$(H4 The Standard C++ Solution)
3335

@@ -118,7 +120,7 @@ template<class T, class... U> void print(T a1, U... an)
118120
A specialization with no arguments ends the recursion.
119121
)
120122

121-
$(H3 D Programming Language Solutions)
123+
$(H3 $(LNAME2 d-solutions, D Programming Language Solutions))
122124

123125
$(H4 The D Look Ma No Templates Solution)
124126

@@ -245,14 +247,6 @@ $(H3 Acknowledgments)
245247

246248
)
247249

248-
$(H3 References)
249-
250-
$(OL
251-
252-
$(LI $(LINK2 http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2006/n2080.pdf, Variadic Templates N2080))
253-
254-
)
255-
256250
)
257251

258252
Macros:

0 commit comments

Comments
 (0)