Add explicit values to the set fuzzer enums.

This commit is contained in:
Garret Rieger 2020-02-11 12:25:57 -08:00
parent e805923310
commit 7b42403c1c
1 changed files with 4 additions and 4 deletions

View File

@ -9,10 +9,10 @@
enum set_operation_t : uint8_t enum set_operation_t : uint8_t
{ {
INTERSECT, INTERSECT = 0,
UNION, UNION = 1,
SUBTRACT, SUBTRACT = 2,
SYMMETRIC_DIFFERENCE SYMMETRIC_DIFFERENCE = 3
}; };
struct instructions_t struct instructions_t