| 7 | //////////////////////////////////////////////////////////////////////////////// |
| 8 | |
| 9 | void FormatValue(TStringBuilderBase* builder, TGuid value, TStringBuf /*spec*/) |
| 10 | { |
| 11 | char* begin = builder->Preallocate(MaxGuidStringSize); |
| 12 | char* end = WriteGuidToBuffer(begin, value); |
| 13 | builder->Advance(end - begin); |
| 14 | } |
| 15 | |
| 16 | //////////////////////////////////////////////////////////////////////////////// |
| 17 |
no test coverage detected