* Writes a Boolean value. A 1-bit integer is written according to the value parameter, either 1 * if true or 0 if false. */
| 222 | * if true or 0 if false. |
| 223 | */ |
| 224 | void writeBitBoolean(bool value) { |
| 225 | writeUBits(value ? 1 : 0, 1); |
| 226 | } |
| 227 | |
| 228 | mutable StreamContext* context; |
| 229 |
no outgoing calls
no test coverage detected