Use canonical links to forum.dlang.org

http://forum.dlang.org/help#canonical
This commit is contained in:
Vladimir Panteleev 2015-10-07 10:55:51 +00:00
parent edc405cacd
commit 52d6930daf
7 changed files with 7 additions and 7 deletions

View file

@ -25,6 +25,6 @@ Tips for Development
rdmd -unittest -main std/regex.d rdmd -unittest -main std/regex.d
2. Do not forget to test your changes. 2. Do not forget to test your changes.
Aim for a [high code coverage of your tests](http://forum.dlang.org/thread/ki5ovr$17m1$1@digitalmars.com). Aim for a [high code coverage of your tests](http://forum.dlang.org/post/ki5ovr$17m1$1@digitalmars.com).
3. Do not forget the [API Documentation](http://dlang.org/phobos/). 3. Do not forget the [API Documentation](http://dlang.org/phobos/).

View file

@ -3,7 +3,7 @@ Declarations for interfacing with the ODBC library.
Adapted with minimal changes from the work of David L. Davis Adapted with minimal changes from the work of David L. Davis
(refer to the $(WEB (refer to the $(WEB
forum.dlang.org/thread/cfk7ql$(DOLLAR)1p4n$(DOLLAR)1@digitaldaemon.com#post-cfk7ql:241p4n:241:40digitaldaemon.com, forum.dlang.org/post/cfk7ql$(DOLLAR)1p4n$(DOLLAR)1@digitaldaemon.com,
original announcement)). original announcement)).
`etc.c.odbc.sqlext` corresponds to the `sqlext.h` C header file. `etc.c.odbc.sqlext` corresponds to the `sqlext.h` C header file.

View file

@ -3,7 +3,7 @@ Declarations for interfacing with the ODBC library.
Adapted with minimal changes from the work of David L. Davis Adapted with minimal changes from the work of David L. Davis
(refer to the $(WEB (refer to the $(WEB
forum.dlang.org/thread/cfk7ql$(DOLLAR)1p4n$(DOLLAR)1@digitaldaemon.com#post-cfk7ql:241p4n:241:40digitaldaemon.com, forum.dlang.org/post/cfk7ql$(DOLLAR)1p4n$(DOLLAR)1@digitaldaemon.com,
original announcement)). original announcement)).
`etc.c.odbc.sqlext.d` corresponds to the `sqlext.h` C header file. `etc.c.odbc.sqlext.d` corresponds to the `sqlext.h` C header file.

View file

@ -3,7 +3,7 @@ Declarations for interfacing with the ODBC library.
Adapted with minimal changes from the work of David L. Davis Adapted with minimal changes from the work of David L. Davis
(refer to the $(WEB (refer to the $(WEB
forum.dlang.org/thread/cfk7ql$(DOLLAR)1p4n$(DOLLAR)1@digitaldaemon.com#post-cfk7ql:241p4n:241:40digitaldaemon.com, forum.dlang.org/post/cfk7ql$(DOLLAR)1p4n$(DOLLAR)1@digitaldaemon.com,
original announcement)). original announcement)).
`etc.c.odbc.sqlucode` corresponds to the `sqlucode.h` C include file. `etc.c.odbc.sqlucode` corresponds to the `sqlucode.h` C include file.

View file

@ -2801,7 +2801,7 @@ unittest
import std.algorithm.comparison : max, min; import std.algorithm.comparison : max, min;
import std.typecons : tuple, Tuple; import std.typecons : tuple, Tuple;
//http://forum.dlang.org/thread/oghtttkopzjshsuflelk@forum.dlang.org //http://forum.dlang.org/post/oghtttkopzjshsuflelk@forum.dlang.org
//Seed is tuple of const. //Seed is tuple of const.
static auto minmaxElement(alias F = min, alias G = max, R)(in R range) static auto minmaxElement(alias F = min, alias G = max, R)(in R range)
@safe pure nothrow if (isInputRange!R) @safe pure nothrow if (isInputRange!R)

View file

@ -30,7 +30,7 @@ public import std.container.util;
private struct RangeT(A) private struct RangeT(A)
{ {
/* Workaround for Issue 13629 at https://issues.dlang.org/show_bug.cgi?id=13629 /* Workaround for Issue 13629 at https://issues.dlang.org/show_bug.cgi?id=13629
See also: http://forum.dlang.org/thread/vbmwhzvawhnkoxrhbnyb@forum.dlang.org?page=1 See also: http://forum.dlang.org/post/vbmwhzvawhnkoxrhbnyb@forum.dlang.org
*/ */
private A[1] _outer_; private A[1] _outer_;
private @property ref inout(A) _outer() inout { return _outer_[0]; } private @property ref inout(A) _outer() inout { return _outer_[0]; }

View file

@ -4806,7 +4806,7 @@ unittest //@@@9559@@@
auto asArray = std.array.array(ints); auto asArray = std.array.array(ints);
} }
unittest //http://forum.dlang.org/thread/nxbdgtdlmwscocbiypjs@forum.dlang.org unittest //http://forum.dlang.org/post/nxbdgtdlmwscocbiypjs@forum.dlang.org
{ {
import std.array : array; import std.array : array;
import std.datetime : SysTime, UTC; import std.datetime : SysTime, UTC;