LiveData: Fix unhandled enum warning

This commit is contained in:
Kyle Schwarz
2023-08-22 17:55:38 -04:00
parent 8d704b1bbb
commit 508013baf4
+1
View File
@@ -53,6 +53,7 @@ inline std::ostream& operator<<(std::ostream& os, const LiveDataCommand cmd) {
case LiveDataCommand::SUBSCRIBE: return os << "Subscribe"; case LiveDataCommand::SUBSCRIBE: return os << "Subscribe";
case LiveDataCommand::UNSUBSCRIBE: return os << "Unsubscribe"; case LiveDataCommand::UNSUBSCRIBE: return os << "Unsubscribe";
case LiveDataCommand::RESPONSE: return os << "Response"; case LiveDataCommand::RESPONSE: return os << "Response";
case LiveDataCommand::CLEAR_ALL: return os << "Clear All";
} }
return os; return os;
} }