From f73b714742b7233f4cb0d4a497fc610882b0fe00 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 7 Apr 2023 20:59:33 +0200 Subject: Add missing operator case. --- test/stream_operators.cc | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test/stream_operators.cc') diff --git a/test/stream_operators.cc b/test/stream_operators.cc index 20470c1d..87949e84 100644 --- a/test/stream_operators.cc +++ b/test/stream_operators.cc @@ -181,6 +181,9 @@ dcp::operator<< (ostream& s, MCASoundField f) case MCASoundField::SEVEN_POINT_ONE: s << "7.1"; break; + case MCASoundField::OTHER: + s << "other"; + break; } return s; } -- cgit v1.2.3