Commit 322109ed authored by David Flynn's avatar David Flynn
Browse files

cli: fix reporting of geometry codec type

parent 8a13140f
...@@ -149,8 +149,8 @@ static std::ostream& ...@@ -149,8 +149,8 @@ static std::ostream&
operator<<(std::ostream& out, const GeometryCodecType& val) operator<<(std::ostream& out, const GeometryCodecType& val)
{ {
switch (val) { switch (val) {
case GeometryCodecType::kOctree: out << "1 (TMC1 Octree)"; break; case GeometryCodecType::kOctree: out << "1 (Octree)"; break;
case GeometryCodecType::kTriSoup: out << "2 (TMC3 TriSoup)"; break; case GeometryCodecType::kTriSoup: out << "2 (TriSoup)"; break;
} }
return out; return out;
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment