mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-19 03:34:03 +00:00
Remove unused typedef
This commit is contained in:
parent
4941e95f10
commit
e6ebc9b6f8
1 changed files with 0 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue