diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-02-26 21:06:58 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-02-26 21:06:58 +0100 |
| commit | de4b2a1d7f93b9f0dd2113aeff746738c19c8b43 (patch) | |
| tree | 1ec1eeaa553d2e7a7dbcdb39305ba3cdee1f979e /test | |
| parent | 894348aee4be18cbae4bb598e904fca98dda475c (diff) | |
Fix warning.
Diffstat (limited to 'test')
| -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..ca8f8c5d 100644 --- a/test/stream_operators.cc +++ b/test/stream_operators.cc @@ -175,6 +175,9 @@ ostream& dcp::operator<< (ostream& s, MCASoundField f) { switch (f) { + case MCASoundField::STEREO: + s << "2.0"; + break; case MCASoundField::FIVE_POINT_ONE: s << "5.1"; break; |
