12345678910111213141516 |
- #include "variant.h"
- #include <library/cpp/yt/string/string_builder.h>
- namespace NYT {
- ////////////////////////////////////////////////////////////////////////////////
- void FormatValue(TStringBuilderBase* builder, const std::monostate&, TStringBuf /*format*/)
- {
- builder->AppendString(TStringBuf("<monostate>"));
- }
- ////////////////////////////////////////////////////////////////////////////////
- } // namespace NYT
|