diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-04-07 20:59:33 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-04-19 12:59:37 +0200 |
| commit | f73b714742b7233f4cb0d4a497fc610882b0fe00 (patch) | |
| tree | f74351049d52335cee5d1f4dcf09877430a968aa | |
| parent | 7a47f00a7ff3f95ef4013bf453340b94c8535e07 (diff) | |
Add missing operator case.
| -rw-r--r-- | test/stream_operators.cc | 3 |
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; } |
