From de4b2a1d7f93b9f0dd2113aeff746738c19c8b43 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 26 Feb 2023 21:06:58 +0100 Subject: [PATCH] Fix warning. --- test/stream_operators.cc | 3 +++ 1 file changed, 3 insertions(+) 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; -- 2.30.2