提交 e6ebc9b6 编写于 作者: B Behdad Esfahbod

Remove unused typedef

上级 4941e95f
......@@ -667,7 +667,6 @@ template <typename Type>
struct BEInt<Type, 1>
{
public:
typedef Type type;
void set (Type V) { v = V; }
operator Type () const { return v; }
private: uint8_t v;
......@@ -676,7 +675,6 @@ template <typename Type>
struct BEInt<Type, 2>
{
public:
typedef Type type;
void set (Type V)
{
v[0] = (V >> 8) & 0xFF;
......@@ -705,7 +703,6 @@ template <typename Type>
struct BEInt<Type, 3>
{
public:
typedef Type type;
void set (Type V)
{
v[0] = (V >> 16) & 0xFF;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册