Add missing operator case.
authorCarl Hetherington <cth@carlh.net>
Fri, 7 Apr 2023 18:59:33 +0000 (20:59 +0200)
committerCarl Hetherington <cth@carlh.net>
Wed, 19 Apr 2023 10:59:37 +0000 (12:59 +0200)
test/stream_operators.cc

index 20470c1da405f72b652cd3b21e71ddfceff79a7d..87949e8455597ec2486c51c7c8854ec28030e2fc 100644 (file)
@@ -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;
 }