Use (std) bool instead of custom bool types
OAI is riddled with boolean_t
, FALSE
, TRUE
, etc. This makes no sense, as there is a standard bool type, and could lead to nasty bugs if a definition of a bool is non-standard (0 == false, true == !false
). This commit removes all non-standard bools in the whole project.