public inbox for gdb-cvs@sourceware.org
help / color / mirror / Atom feed
* [binutils-gdb] gdb: move RequireLongest to gdbsupport/traits.h
@ 2024-04-23  1:37 Simon Marchi
  0 siblings, 0 replies; only message in thread
From: Simon Marchi @ 2024-04-23  1:37 UTC (permalink / raw)
  To: gdb-cvs

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=6e7c49c2dd9ab0803894925c2ec422ea5aeddfb8

commit 6e7c49c2dd9ab0803894925c2ec422ea5aeddfb8
Author: Simon Marchi <simon.marchi@efficios.com>
Date:   Mon Apr 22 16:10:15 2024 -0400

    gdb: move RequireLongest to gdbsupport/traits.h
    
    Move it out of defs.h.
    
    Change-Id: Ie1743d41a57f81667650048563e66073c72230cf
    Approved-By: John Baldwin <jhb@FreeBSD.org>

Diff:
---
 gdb/defs.h                  | 4 ----
 gdb/extract-store-integer.h | 2 ++
 gdb/regcache.h              | 1 +
 gdbsupport/traits.h         | 4 ++++
 4 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/gdb/defs.h b/gdb/defs.h
index 5da8ce72815..535ca671673 100644
--- a/gdb/defs.h
+++ b/gdb/defs.h
@@ -63,10 +63,6 @@
 #include "gdbsupport/enum-flags.h"
 #include "gdbsupport/array-view.h"
 
-template<typename T>
-using RequireLongest = gdb::Requires<gdb::Or<std::is_same<T, LONGEST>,
-					     std::is_same<T, ULONGEST>>>;
-
 /* Just in case they're not defined in stdio.h.  */
 
 #ifndef SEEK_SET
diff --git a/gdb/extract-store-integer.h b/gdb/extract-store-integer.h
index 1ba5f82da9a..fd195dc6436 100644
--- a/gdb/extract-store-integer.h
+++ b/gdb/extract-store-integer.h
@@ -18,6 +18,8 @@
 #ifndef GDB_EXTRACT_STORE_INTEGER_H
 #define GDB_EXTRACT_STORE_INTEGER_H
 
+#include "gdbsupport/traits.h"
+
 template<typename T, typename = RequireLongest<T>>
 T extract_integer (gdb::array_view<const gdb_byte>, enum bfd_endian byte_order);
 
diff --git a/gdb/regcache.h b/gdb/regcache.h
index 1d049fe7ae8..2f4b7d94c69 100644
--- a/gdb/regcache.h
+++ b/gdb/regcache.h
@@ -23,6 +23,7 @@
 #include "gdbsupport/array-view.h"
 #include "gdbsupport/common-regcache.h"
 #include "gdbsupport/function-view.h"
+#include "gdbsupport/traits.h"
 
 struct regcache;
 struct regset;
diff --git a/gdbsupport/traits.h b/gdbsupport/traits.h
index 92fe59f34af..85cbc94bc6c 100644
--- a/gdbsupport/traits.h
+++ b/gdbsupport/traits.h
@@ -143,4 +143,8 @@ template<typename Condition>
 using Requires = typename std::enable_if<Condition::value, void>::type;
 }
 
+template<typename T>
+using RequireLongest = gdb::Requires<gdb::Or<std::is_same<T, LONGEST>,
+					     std::is_same<T, ULONGEST>>>;
+
 #endif /* COMMON_TRAITS_H */

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2024-04-23  1:37 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-23  1:37 [binutils-gdb] gdb: move RequireLongest to gdbsupport/traits.h Simon Marchi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).