mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 13:31:27 +12:00
Various fixes
This commit is contained in:
parent
4666f190db
commit
cbe83ad8dd
5 changed files with 8 additions and 8 deletions
|
@ -557,7 +557,7 @@ public:
|
|||
|
||||
be_t(const be_t&) = default;
|
||||
|
||||
template<typename = std::enable_if_t<std::is_constructible<type, type>::value>> be_t(const type& value)
|
||||
force_inline be_t(const type& value)
|
||||
#ifdef IS_LE_MACHINE
|
||||
: m_data(se_t<type, sizeof(stype)>::to(value))
|
||||
#else
|
||||
|
@ -736,7 +736,7 @@ public:
|
|||
|
||||
le_t(const le_t&) = default;
|
||||
|
||||
template<typename = std::enable_if_t<std::is_constructible<type, type>::value>> le_t(const type& value)
|
||||
le_t(const type& value)
|
||||
: m_data(value)
|
||||
{
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue