Merge pull request #1052 from Bigpet/master

remove lwmutex::const_be_u32_t::value
This commit is contained in:
Hykem 2015-04-11 13:09:03 +01:00
commit 721a0c8bcb
1 changed files with 1 additions and 3 deletions

View File

@ -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);
} }
}; };