LiveData: Fix unhandled enum warning

136-add-android-support
Kyle Schwarz 2023-08-22 17:55:38 -04:00
parent 8d704b1bbb
commit 508013baf4
1 changed files with 1 additions and 0 deletions

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;
} }