Remove some more bugzilla links

This commit is contained in:
Dennis Korpel 2025-01-09 00:36:16 +01:00
parent e9ae684df5
commit fa228668ed
4 changed files with 1 additions and 8 deletions

View file

@ -4,7 +4,6 @@
# DMD # DMD
[![GitHub tag](https://img.shields.io/github/tag-date/dlang/dmd.svg?maxAge=86400&style=flat)](https://github.com/dlang/dmd/releases) [![GitHub tag](https://img.shields.io/github/tag-date/dlang/dmd.svg?maxAge=86400&style=flat)](https://github.com/dlang/dmd/releases)
[![Code coverage](https://img.shields.io/codecov/c/github/dlang/dmd.svg?maxAge=86400&style=flat)](https://codecov.io/gh/dlang/dmd) [![Code coverage](https://img.shields.io/codecov/c/github/dlang/dmd.svg?maxAge=86400&style=flat)](https://codecov.io/gh/dlang/dmd)
[![Bugzilla Issues](https://img.shields.io/badge/issues-Bugzilla-green.svg?style=flat)](https://issues.dlang.org/buglist.cgi?component=dmd&list_id=220151&product=D&resolution=---)
[![license](https://img.shields.io/github/license/dlang/dmd.svg?style=flat)](https://github.com/dlang/dmd/blob/master/LICENSE.txt) [![license](https://img.shields.io/github/license/dlang/dmd.svg?style=flat)](https://github.com/dlang/dmd/blob/master/LICENSE.txt)
[![Build status](https://img.shields.io/cirrus/github/dlang/dmd/master?label=Cirrus%20CI&logo=Cirrus%20CI)](https://cirrus-ci.com/github/dlang/dmd/master) [![Build status](https://img.shields.io/cirrus/github/dlang/dmd/master?label=Cirrus%20CI&logo=Cirrus%20CI)](https://cirrus-ci.com/github/dlang/dmd/master)

View file

@ -15,10 +15,6 @@
* Follows Itanium C++ ABI 1.86 section 5.1 * Follows Itanium C++ ABI 1.86 section 5.1
* http://refspecs.linux-foundation.org/cxxabi-1.86.html#mangling * http://refspecs.linux-foundation.org/cxxabi-1.86.html#mangling
* which is where the grammar comments come from. * which is where the grammar comments come from.
*
* Bugs:
* https://issues.dlang.org/query.cgi
* enter `C++, mangling` as the keywords.
*/ */
module dmd.mangle.cpp; module dmd.mangle.cpp;

View file

@ -82,7 +82,7 @@ void printInternalFailure(FILE* stream)
{ {
fputs(("---\n" ~ fputs(("---\n" ~
"ERROR: This is a compiler bug.\n" ~ "ERROR: This is a compiler bug.\n" ~
"Please report it via https://issues.dlang.org/enter_bug.cgi\n" ~ "Please report it via https://github.com/dlang/dmd/issues\n" ~
"with, preferably, a reduced, reproducible example and the information below.\n" ~ "with, preferably, a reduced, reproducible example and the information below.\n" ~
"DustMite (https://github.com/CyberShadow/DustMite/wiki) can help with the reduction.\n" ~ "DustMite (https://github.com/CyberShadow/DustMite/wiki) can help with the reduction.\n" ~
"---\n").ptr, stream); "---\n").ptr, stream);

View file

@ -7,8 +7,6 @@
* Source: $(LINK2 https://github.com/dlang/dmd/blob/master/src/dmd/ob.d, _ob.d) * Source: $(LINK2 https://github.com/dlang/dmd/blob/master/src/dmd/ob.d, _ob.d)
* Documentation: https://dlang.org/phobos/dmd_escape.html * Documentation: https://dlang.org/phobos/dmd_escape.html
* Coverage: https://codecov.io/gh/dlang/dmd/src/master/src/dmd/ob.d * Coverage: https://codecov.io/gh/dlang/dmd/src/master/src/dmd/ob.d
* Bug reports: use 'live' keyword:
* https://issues.dlang.org/buglist.cgi?bug_status=NEW&bug_status=REOPENED&keywords=live
* References: https://github.com/dlang/DIPs/blob/master/DIPs/accepted/DIP1021.md Argument Ownership and Function Calls * References: https://github.com/dlang/DIPs/blob/master/DIPs/accepted/DIP1021.md Argument Ownership and Function Calls
*/ */