Migrate some headers and general tidying

This commit is contained in:
Vinnie Falco
2013-09-21 16:37:09 -07:00
parent 1a3cddc002
commit 9d9c822efb
30 changed files with 262 additions and 391 deletions

View File

@@ -120,8 +120,6 @@ public:
template <typename IntegralType>
Proxy& operator= (IntegralType v)
{
bassert (v >= 0 && v <= 255);
(*m_value)=
(*m_value)&(!((0xff)<<m_shift)) |
((v&0xff)<<m_shift);