mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 19:45:20 +00:00
Fixup for fixup
This commit is contained in:
parent
f906603e03
commit
619aedb8d4
1 changed files with 4 additions and 4 deletions
|
@ -605,10 +605,10 @@ namespace stx
|
|||
|
||||
template <typename T1>
|
||||
static constexpr bool is_stx_pointer = false
|
||||
|| is_instance_of<std::remove_cv_t<T1>, shared_ptr>::value
|
||||
|| is_instance_of<std::remove_cv_t<T1>, single_ptr>::value
|
||||
|| is_instance_of<std::remove_cv_t<T1>, atomic_ptr>::value;
|
||||
|| std::is_same_v<T1, null_ptr_t>;
|
||||
|| is_instance_of<std::remove_cvref_t<T1>, shared_ptr>::value
|
||||
|| is_instance_of<std::remove_cvref_t<T1>, single_ptr>::value
|
||||
|| is_instance_of<std::remove_cvref_t<T1>, atomic_ptr>::value;
|
||||
|| std::is_same_v<std::remove_cvref_t<T1>, null_ptr_t>;
|
||||
|
||||
public:
|
||||
using element_type = std::remove_extent_t<T>;
|
||||
|
|
Loading…
Add table
Reference in a new issue