Compilation fix, be_t fix

+ CellWebBrowserConfig2 struct
This commit is contained in:
Nekotekina 2014-09-05 21:54:06 +04:00
parent 225dba754d
commit feec20ac3e
3 changed files with 76 additions and 2 deletions

View file

@ -152,6 +152,12 @@ public:
be_t& operator = (const be_t& right) = default;
be_t& operator = (const be_t<const T, const T2>& right)
{
m_data = right.ToBE();
return *this;
}
template<typename T1> be_t& operator += (T1 right) { return *this = T(*this) + right; }
template<typename T1> be_t& operator -= (T1 right) { return *this = T(*this) - right; }
template<typename T1> be_t& operator *= (T1 right) { return *this = T(*this) * right; }