| 1023 | } |
| 1024 | |
| 1025 | void insertBytes(CheckStatusWrapper* status, unsigned char tag, const void* bytes, unsigned length) |
| 1026 | { |
| 1027 | try |
| 1028 | { |
| 1029 | pb->insertBytes(tag, bytes, length); |
| 1030 | } |
| 1031 | catch (const Exception& ex) |
| 1032 | { |
| 1033 | ex.stuffException(status); |
| 1034 | } |
| 1035 | } |
| 1036 | |
| 1037 | void insertString(CheckStatusWrapper* status, unsigned char tag, const char* str) |
| 1038 | { |
no test coverage detected