blob: 31aae3ace13e947481720711e1199918e23f2043 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include "format_string.h"
namespace NYT {
////////////////////////////////////////////////////////////////////////////////
TRuntimeFormat::TRuntimeFormat(TStringBuf fmt)
: Format_(fmt)
{ }
TStringBuf TRuntimeFormat::Get() const noexcept
{
return Format_;
}
////////////////////////////////////////////////////////////////////////////////
} // namespace NYT
|