From fa228668ed8190df087bb713b8ae7d133f2a928e Mon Sep 17 00:00:00 2001 From: Dennis Korpel Date: Thu, 9 Jan 2025 00:36:16 +0100 Subject: [PATCH] Remove some more bugzilla links --- README.md | 1 - compiler/src/dmd/mangle/cpp.d | 4 ---- compiler/src/dmd/mars.d | 2 +- compiler/src/dmd/ob.d | 2 -- 4 files changed, 1 insertion(+), 8 deletions(-) diff --git a/README.md b/README.md index ca30e21961..7d25140d41 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,6 @@ # DMD [![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) -[![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) [![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) diff --git a/compiler/src/dmd/mangle/cpp.d b/compiler/src/dmd/mangle/cpp.d index 9ce3f9c8ed..67c9b53f1b 100644 --- a/compiler/src/dmd/mangle/cpp.d +++ b/compiler/src/dmd/mangle/cpp.d @@ -15,10 +15,6 @@ * Follows Itanium C++ ABI 1.86 section 5.1 * http://refspecs.linux-foundation.org/cxxabi-1.86.html#mangling * 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; diff --git a/compiler/src/dmd/mars.d b/compiler/src/dmd/mars.d index b911366adc..3abb63d614 100644 --- a/compiler/src/dmd/mars.d +++ b/compiler/src/dmd/mars.d @@ -82,7 +82,7 @@ void printInternalFailure(FILE* stream) { fputs(("---\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" ~ "DustMite (https://github.com/CyberShadow/DustMite/wiki) can help with the reduction.\n" ~ "---\n").ptr, stream); diff --git a/compiler/src/dmd/ob.d b/compiler/src/dmd/ob.d index ee4b6525ed..2019e82cd7 100644 --- a/compiler/src/dmd/ob.d +++ b/compiler/src/dmd/ob.d @@ -7,8 +7,6 @@ * Source: $(LINK2 https://github.com/dlang/dmd/blob/master/src/dmd/ob.d, _ob.d) * Documentation: https://dlang.org/phobos/dmd_escape.html * 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 */