From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2126) id 17261385843A; Fri, 3 Nov 2023 19:29:10 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 17261385843A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1699039750; bh=aXag2HHK36+Gr9oFRBSDxqDcv93L3ezM37HxvRkGKA0=; h=From:To:Subject:Date:From; b=oqSN8KqA5pmwAThAMKv9jLY2TcZp9X9PZ2291by0zFhKik8x9zRGwUZDit7dEv90N OTukRPpL9d/YkaYj5qKSSTxkXJBs7ku5/3tBi1hbMIIE+ByB/35LmwoXRdee3zurWk +zMTqJNpt4PI1zwHvAvrOAFVlZVFa4OQwEaMuGUE= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Tom Tromey To: gdb-cvs@sourceware.org Subject: [binutils-gdb] Remove unused declaration X-Act-Checkin: binutils-gdb X-Git-Author: Tom Tromey X-Git-Refname: refs/heads/master X-Git-Oldrev: 8cb2c7fc2ea4b40494b9be0f446bfbb2e52e057d X-Git-Newrev: 8489362f002d1a844e1a0713438922cdafae7b7c Message-Id: <20231103192910.17261385843A@sourceware.org> Date: Fri, 3 Nov 2023 19:29:10 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3D8489362f002d= 1a844e1a0713438922cdafae7b7c commit 8489362f002d1a844e1a0713438922cdafae7b7c Author: Tom Tromey Date: Fri Nov 3 13:24:08 2023 -0600 Remove unused declaration =20 I found a declaration in py-stopevent.h for which there is no definition. This patch removes it. Diff: --- gdb/python/py-stopevent.h | 1 - 1 file changed, 1 deletion(-) diff --git a/gdb/python/py-stopevent.h b/gdb/python/py-stopevent.h index 023459ff200..649112f0488 100644 --- a/gdb/python/py-stopevent.h +++ b/gdb/python/py-stopevent.h @@ -23,7 +23,6 @@ #include "py-event.h" =20 extern gdbpy_ref<> create_stop_event_object (PyTypeObject *py_type); -extern void stop_evpy_dealloc (PyObject *self); =20 extern int emit_stop_event (struct bpstat *bs, enum gdb_signal stop_signal);