summaryrefslogtreecommitdiff
path: root/src/utils/optional_bool.cpp
blob: 56fdca28885c366102e55f5cad3d4a2ef72461c4 (plain)
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;
}