123456789101112131415161718 |
- #include "format_string.h"
- namespace NYT {
- ////////////////////////////////////////////////////////////////////////////////
- TRuntimeFormat::TRuntimeFormat(TStringBuf fmt)
- : Format_(fmt)
- { }
- TStringBuf TRuntimeFormat::Get() const noexcept
- {
- return Format_;
- }
- ////////////////////////////////////////////////////////////////////////////////
- } // namespace NYT
|