From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1726) id F1C363858417; Tue, 19 Mar 2024 14:57:38 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org F1C363858417 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1710860258; bh=ghFH6KHLIIzYGgi3BruX86hXRI4xC2+S0mgrTl7HJBc=; h=From:To:Subject:Date:From; b=SELjqUn1nNcobXrv6MK/M0RsY5eBw+yT74iy/Pk7VJo83pzjazoUtgYSrcfMzQCV2 EyPPSjT+KtuHRODlghtTx7hLyXsroh3Hqrv0ViqjTLhI0HfxivR1XCVAsGYBMzxOsW Wp6wJwAc4n9iA43lr2JGDwVUC51eTxBLFPzIDd1A= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Andrew Burgess To: gdb-cvs@sourceware.org Subject: [binutils-gdb] gdbsupport: rename include guard in gdb-checked-static-cast.h X-Act-Checkin: binutils-gdb X-Git-Author: Andrew Burgess X-Git-Refname: refs/heads/master X-Git-Oldrev: 7d18eb9983b00455fd2f3100d4de2772c3f656ad X-Git-Newrev: 8695c3a693849bf6ebd3c6d0620f03bcc6429604 Message-Id: <20240319145738.F1C363858417@sourceware.org> Date: Tue, 19 Mar 2024 14:57:38 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3D8695c3a69384= 9bf6ebd3c6d0620f03bcc6429604 commit 8695c3a693849bf6ebd3c6d0620f03bcc6429604 Author: Andrew Burgess Date: Wed Mar 6 17:48:55 2024 +0000 gdbsupport: rename include guard in gdb-checked-static-cast.h =20 I noticed in passing that the include guard in the file gdbsupport/gdb-checked-static-cast.h was wrong, it includes the word DYNAMIC when STATIC would be better, fixed in this commit. =20 There should be no user visible changes after this commit. Diff: --- gdbsupport/gdb-checked-static-cast.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gdbsupport/gdb-checked-static-cast.h b/gdbsupport/gdb-checked-= static-cast.h index 24fa7a4ba04..97843fab225 100644 --- a/gdbsupport/gdb-checked-static-cast.h +++ b/gdbsupport/gdb-checked-static-cast.h @@ -15,8 +15,8 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . = */ =20 -#ifndef COMMON_GDB_CHECKED_DYNAMIC_CAST_H -#define COMMON_GDB_CHECKED_DYNAMIC_CAST_H +#ifndef COMMON_GDB_CHECKED_STATIC_CAST_H +#define COMMON_GDB_CHECKED_STATIC_CAST_H =20 #include "gdbsupport/traits.h" =20 @@ -80,4 +80,4 @@ checked_static_cast (V &v) =20 } =20 -#endif /* COMMON_GDB_CHECKED_DYNAMIC_CAST_H */ +#endif /* COMMON_GDB_CHECKED_STATIC_CAST_H */