diff options
| author | tobo <[email protected]> | 2022-08-09 02:16:11 +0300 | 
|---|---|---|
| committer | tobo <[email protected]> | 2022-08-09 02:16:11 +0300 | 
| commit | dfd20cd437d550c61ce3d52b54aa4a88fbb904b1 (patch) | |
| tree | 26c4e25e3bd6414a0b45deed9fe7e17efd10a7d0 | |
| parent | 97f30b103aa00ece058d395a6eb84daa7a79fafb (diff) | |
const char* -> TStringBuf
| -rw-r--r-- | library/cpp/json/writer/json.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/library/cpp/json/writer/json.cpp b/library/cpp/json/writer/json.cpp index 02370c2d79e..a732e470521 100644 --- a/library/cpp/json/writer/json.cpp +++ b/library/cpp/json/writer/json.cpp @@ -30,7 +30,7 @@ namespace NJsonWriter {          StackPush(JE_OUTER_SPACE);      } -    static const char* EntityToStr(EJsonEntity e) { +    static TStringBuf EntityToStr(EJsonEntity e) {          switch (e) {              case JE_OUTER_SPACE:                  return "JE_OUTER_SPACE"; | 
