guid.cpp 450 B

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