mirror of
https://github.com/dlang/dmd.git
synced 2025-04-25 20:50:41 +03:00
Replace http:// with https:// for forum, issues, and wiki dlang.org links
This commit is contained in:
parent
70cbbd3908
commit
b665b5fe06
9 changed files with 11 additions and 11 deletions
|
@ -8,7 +8,7 @@ We exclusively use [bugzilla](https://issues.dlang.org/) for issue tracking, whi
|
|||
Before reporting a bug, please [check bugzilla](https://issues.dlang.org/query.cgi) to see if it's already reported.
|
||||
If it isn't, [create a new issue](https://issues.dlang.org/enter_bug.cgi).
|
||||
|
||||
For questions about a specific behavior, the [D.Learn](http://forum.dlang.org/group/learn) group is a good place to ask for clarification before reporting an issue.
|
||||
For questions about a specific behavior, the [D.Learn](https://forum.dlang.org/group/learn) group is a good place to ask for clarification before reporting an issue.
|
||||
|
||||
### Content
|
||||
|
||||
|
@ -44,7 +44,7 @@ Note that after a version has entered the release window (there is a beta / the
|
|||
|
||||
Before submitting a PR, check the following to make the pulling process run smoothly are:
|
||||
|
||||
- Make sure to target the right branch. Regressions go to stable, and everything else to master, as outlined in [our release process](http://wiki.dlang.org/DIP75).
|
||||
- Make sure to target the right branch. Regressions go to stable, and everything else to master, as outlined in [our release process](https://wiki.dlang.org/DIP75).
|
||||
|
||||
- When fixing a Bugzilla issue, use the title: 'Fix issue XXXXX - Issue title'. This is recognized by both Bugzilla and our GitHub bot (dlang-bot),
|
||||
and will automatically link the issue and the pull request together (by providing a link to the issue in Github, and automatically closing bugs when pull requests are merged).
|
||||
|
|
|
@ -17,11 +17,11 @@
|
|||
**DMD** is the reference compiler for [the D programming language](https://dlang.org).
|
||||
|
||||
To report a problem or browse the list of open bugs, please visit the
|
||||
[bug tracker](http://issues.dlang.org/).
|
||||
[bug tracker](https://issues.dlang.org/).
|
||||
|
||||
For more information, including instructions for compiling, installing, and
|
||||
hacking on DMD, check the [contribution guide](CONTRIBUTING.md) and
|
||||
visit the [D Wiki](http://wiki.dlang.org/DMD).
|
||||
visit the [D Wiki](https://wiki.dlang.org/DMD).
|
||||
|
||||
All significant contributors to DMD source code, via GitHub, Bugzilla, email,
|
||||
wiki, the D forums, etc., please assign copyright to those
|
||||
|
|
|
@ -5504,7 +5504,7 @@ elem *callfunc(const ref Loc loc,
|
|||
{
|
||||
// `OPcallns` used to be passed here for certain pure functions,
|
||||
// but optimizations based on pure have to be retought, see:
|
||||
// http://issues.dlang.org/show_bug.cgi?id=22277
|
||||
// https://issues.dlang.org/show_bug.cgi?id=22277
|
||||
if (ep)
|
||||
e = el_bin(OPcall, tyret, ec, ep);
|
||||
else
|
||||
|
|
|
@ -126,7 +126,7 @@ extern (C++) struct Param
|
|||
bool stackstomp; // add stack stomping code
|
||||
bool useUnitTests; // generate unittest code
|
||||
bool useInline = false; // inline expand functions
|
||||
FeatureState useDIP25; // implement http://wiki.dlang.org/DIP25
|
||||
FeatureState useDIP25; // implement https://wiki.dlang.org/DIP25
|
||||
FeatureState useDIP1000; // implement https://dlang.org/spec/memory-safe-d.html#scope-return-params
|
||||
bool useDIP1021; // implement https://github.com/dlang/DIPs/blob/master/DIPs/accepted/DIP1021.md
|
||||
bool release; // build release version
|
||||
|
|
|
@ -115,7 +115,7 @@ struct Param
|
|||
bool stackstomp; // add stack stomping code
|
||||
bool useUnitTests; // generate unittest code
|
||||
bool useInline; // inline expand functions
|
||||
FeatureState useDIP25; // implement http://wiki.dlang.org/DIP25
|
||||
FeatureState useDIP25; // implement https://wiki.dlang.org/DIP25
|
||||
FeatureState useDIP1000; // implement https://dlang.org/spec/memory-safe-d.html#scope-return-params
|
||||
bool useDIP1021; // implement https://github.com/dlang/DIPs/blob/master/DIPs/accepted/DIP1021.md
|
||||
bool release; // build release version
|
||||
|
|
|
@ -5,7 +5,7 @@ fail_compilation/fail11.d(12): Error: `int*` has no effect
|
|||
---
|
||||
*/
|
||||
|
||||
// http://forum.dlang.org/thread/c738o9$1p7i$1@digitaldaemon.com
|
||||
// https://forum.dlang.org/thread/c738o9$1p7i$1@digitaldaemon.com
|
||||
|
||||
void main()
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@ fail_compilation/test20903.d(14): Error: integer overflow
|
|||
---
|
||||
*/
|
||||
|
||||
// http://issues.dlang.org/show_bug.cgi?id=20903
|
||||
// https://issues.dlang.org/show_bug.cgi?id=20903
|
||||
|
||||
long test()
|
||||
{
|
||||
|
|
|
@ -284,7 +284,7 @@ void test5()
|
|||
|
||||
/********************************************/
|
||||
// inline tests
|
||||
// http://issues.dlang.org/show_bug.cgi?id=14730
|
||||
// https://issues.dlang.org/show_bug.cgi?id=14730
|
||||
|
||||
void test6a()
|
||||
{
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
import core.memory;
|
||||
|
||||
// see http://forum.dlang.org/thread/4BB6296E.6050506@digitalmars.com for more info
|
||||
// see https://forum.dlang.org/thread/4BB6296E.6050506@digitalmars.com for more info
|
||||
|
||||
// failure case for bug fixed by druntime rev 282
|
||||
// how it works:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue