diff options
author | bulatman <bulatman@yandex-team.com> | 2023-06-10 13:55:11 +0300 |
---|---|---|
committer | bulatman <bulatman@yandex-team.com> | 2023-06-10 13:55:11 +0300 |
commit | d570836295decdb827b4f95d75ebf2d8d9232b9b (patch) | |
tree | 859f3511dc3166e935b9c3438f6beee050816001 /library/cpp/string_utils/csv/csv.cpp | |
parent | 91497eb27263e2feb35b53a90773e7207752a2ec (diff) | |
download | ydb-d570836295decdb827b4f95d75ebf2d8d9232b9b.tar.gz |
Remove extra semicolon (library)
Diffstat (limited to 'library/cpp/string_utils/csv/csv.cpp')
-rw-r--r-- | library/cpp/string_utils/csv/csv.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/string_utils/csv/csv.cpp b/library/cpp/string_utils/csv/csv.cpp index 218473c62c..bca9a5d7f1 100644 --- a/library/cpp/string_utils/csv/csv.cpp +++ b/library/cpp/string_utils/csv/csv.cpp @@ -55,7 +55,7 @@ TStringBuf NCsvFormat::CsvSplitter::Consume() { ++TokenEnd; } } -}; +} TString NCsvFormat::TLinesSplitter::ConsumeLine() { bool Escape = false; @@ -79,4 +79,4 @@ TString NCsvFormat::TLinesSplitter::ConsumeLine() { } } return result; -}; +} |