mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 09:08:59 +00:00
gdb: move RequireLongest to gdbsupport/traits.h
Move it out of defs.h. Change-Id: Ie1743d41a57f81667650048563e66073c72230cf Approved-By: John Baldwin <jhb@FreeBSD.org>
This commit is contained in:
committed by
Simon Marchi
parent
ec45252592
commit
6e7c49c2dd
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user