mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-08-02 22:30:39 +00:00
remove the publicly accessible version of the template parameter in lwmutex::const_be_u32_t because it's never used and causes linker errors in clang 3.4 (and allegedly gcc 4.8.4)
This commit is contained in:
parent
952098c00f
commit
d140cffc08
1 changed files with 1 additions and 3 deletions
|
@ -25,11 +25,9 @@ namespace lwmutex
|
||||||
template<u32 _value>
|
template<u32 _value>
|
||||||
struct const_be_u32_t
|
struct const_be_u32_t
|
||||||
{
|
{
|
||||||
static const u32 value = _value;
|
|
||||||
|
|
||||||
operator const be_t<u32>() const
|
operator const be_t<u32>() const
|
||||||
{
|
{
|
||||||
return be_t<u32>::make(value);
|
return be_t<u32>::make(_value);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue