Skip to content

Use (std) bool instead of custom bool types

Robert Schmidt requested to merge fix-bool into develop

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.

Merge request reports