| 1035 | } |
| 1036 | |
| 1037 | void insertString(CheckStatusWrapper* status, unsigned char tag, const char* str) |
| 1038 | { |
| 1039 | try |
| 1040 | { |
| 1041 | pb->insertString(tag, str, strlen(str)); |
| 1042 | } |
| 1043 | catch (const Exception& ex) |
| 1044 | { |
| 1045 | ex.stuffException(status); |
| 1046 | } |
| 1047 | } |
| 1048 | |
| 1049 | void insertTag(CheckStatusWrapper* status, unsigned char tag) |
| 1050 | { |
no test coverage detected