mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-15 01:18:13 +00:00
Add explicit values to the set fuzzer enums.
This commit is contained in:
parent
e805923310
commit
7b42403c1c
1 changed files with 4 additions and 4 deletions
|
@ -9,10 +9,10 @@
|
|||
|
||||
enum set_operation_t : uint8_t
|
||||
{
|
||||
INTERSECT,
|
||||
UNION,
|
||||
SUBTRACT,
|
||||
SYMMETRIC_DIFFERENCE
|
||||
INTERSECT = 0,
|
||||
UNION = 1,
|
||||
SUBTRACT = 2,
|
||||
SYMMETRIC_DIFFERENCE = 3
|
||||
};
|
||||
|
||||
struct instructions_t
|
||||
|
|
Loading…
Add table
Reference in a new issue