guid.cpp 469 B

12345678910111213141516171819
  1. #include "guid.h"
  2. #include "format.h"
  3. namespace NYT {
  4. ////////////////////////////////////////////////////////////////////////////////
  5. void FormatValue(TStringBuilderBase* builder, TGuid value, TStringBuf /*spec*/)
  6. {
  7. char* begin = builder->Preallocate(MaxGuidStringSize);
  8. char* end = WriteGuidToBuffer(begin, value);
  9. builder->Advance(end - begin);
  10. }
  11. ////////////////////////////////////////////////////////////////////////////////
  12. } // namespace NYT