summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-04-07 20:59:33 +0200
committerCarl Hetherington <cth@carlh.net>2023-04-19 12:59:37 +0200
commitf73b714742b7233f4cb0d4a497fc610882b0fe00 (patch)
treef74351049d52335cee5d1f4dcf09877430a968aa /test
parent7a47f00a7ff3f95ef4013bf453340b94c8535e07 (diff)
Add missing operator case.
Diffstat (limited to 'test')
-rw-r--r--test/stream_operators.cc3
1 files changed, 3 insertions, 0 deletions
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;
}