diff --git a/nac3core/irrt/test/util.hpp b/nac3core/irrt/test/util.hpp index 4817e41d..615d04be 100644 --- a/nac3core/irrt/test/util.hpp +++ b/nac3core/irrt/test/util.hpp @@ -6,6 +6,11 @@ template void print_value(const T& value); +template <> +void print_value(const bool& value) { + printf("%s", value ? "true" : "false"); +} + template <> void print_value(const int8_t& value) { printf("%d", value);