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:
@@ -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);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user