summaryrefslogtreecommitdiff
path: root/test/stream_operators.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-09-02 22:43:19 +0200
committerCarl Hetherington <cth@carlh.net>2022-09-02 22:43:19 +0200
commitd9b957d7da123e4b6e5f2449f5d45c12fce225f8 (patch)
tree46fb87683ff357aff3b886a5e6201a9bb390d3a9 /test/stream_operators.cc
parentfeff11732f33487a5bec6fb568f43f86c1a0ab0b (diff)
Replace ContentKind enum with a class.
Diffstat (limited to 'test/stream_operators.cc')
-rw-r--r--test/stream_operators.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/stream_operators.cc b/test/stream_operators.cc
index 5e4f88e6..20470c1d 100644
--- a/test/stream_operators.cc
+++ b/test/stream_operators.cc
@@ -81,7 +81,7 @@ dcp::operator<< (std::ostream& s, Effect e)
ostream&
dcp::operator<< (ostream& s, ContentKind c)
{
- s << content_kind_to_string(c);
+ s << c.name();
return s;
}