1 2 3 4 5 6 7 8
#include <utils/optional_bool.hpp> std::ostream& operator<<(std::ostream& os, const OptionalBool& o) { os << o.to_string(); return os; }