primitive types
| 266 | { |
| 267 | // primitive types |
| 268 | void WriteTrait<bool>::Write(skr_json_writer_t* writer, bool b) |
| 269 | { |
| 270 | writer->Bool(b); |
| 271 | } |
| 272 | void WriteTrait<int8_t>::Write(skr_json_writer_t* writer, int8_t i) |
| 273 | { |
| 274 | writer->Int(i); |
nothing calls this directly
no test coverage detected