.ToLE() changed to .value() or removed

This commit is contained in:
Nekotekina
2015-01-14 02:08:00 +03:00
parent 8df825abc5
commit bf7cf0ee9d
20 changed files with 104 additions and 108 deletions
+1 -1
View File
@@ -556,7 +556,6 @@ private:
return m_data;
}
public:
type ToLE() const
{
return se_t<type, sizeof(T2)>::from_be(m_data);
@@ -572,6 +571,7 @@ public:
m_data = se_t<type, sizeof(T2)>::to_be(value);
}
public:
static be_t MakeFromLE(const type& value)
{
stype data = se_t<type, sizeof(T2)>::to_be(value);