\brief Whether a given message type needs a body.
| 128 | |
| 129 | /// \brief Whether a given message type needs a body. |
| 130 | static bool HasBody(MessageType type) { |
| 131 | return type != MessageType::NONE && type != MessageType::SCHEMA; |
| 132 | } |
| 133 | |
| 134 | private: |
| 135 | // Hide serialization details from user API |
no outgoing calls
no test coverage detected