Fix up minor warnings in touched files

This commit is contained in:
Evan Typanski 2024-10-29 11:37:20 -04:00
parent 985f4f7c72
commit 36af0591a6
3 changed files with 2 additions and 5 deletions

View file

@ -18,7 +18,7 @@ class DFA_Machine;
// Transitions to the uncomputed state indicate that we haven't yet
// computed the state to go to.
#define DFA_UNCOMPUTED_STATE -2
#define DFA_UNCOMPUTED_STATE (-2)
#define DFA_UNCOMPUTED_STATE_PTR ((DFA_State*)DFA_UNCOMPUTED_STATE)
class DFA_State : public Obj {