Specializations for types with dedicated handling in Parcel
| 40 | |
| 41 | // Specializations for types with dedicated handling in Parcel |
| 42 | status_t read(const Parcel& parcel, bool* b) const { |
| 43 | return callParcel("readBool", [&]() { return parcel.readBool(b); }); |
| 44 | } |
| 45 | status_t write(Parcel* parcel, bool b) const { |
| 46 | return callParcel("writeBool", [&]() { return parcel->writeBool(b); }); |
| 47 | } |
no test coverage detected