aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/string_utils
diff options
context:
space:
mode:
authorbulatman <bulatman@yandex-team.com>2023-06-10 13:55:11 +0300
committerbulatman <bulatman@yandex-team.com>2023-06-10 13:55:11 +0300
commitd570836295decdb827b4f95d75ebf2d8d9232b9b (patch)
tree859f3511dc3166e935b9c3438f6beee050816001 /library/cpp/string_utils
parent91497eb27263e2feb35b53a90773e7207752a2ec (diff)
downloadydb-d570836295decdb827b4f95d75ebf2d8d9232b9b.tar.gz
Remove extra semicolon (library)
Diffstat (limited to 'library/cpp/string_utils')
-rw-r--r--library/cpp/string_utils/base64/base64_ut.cpp12
-rw-r--r--library/cpp/string_utils/csv/csv.cpp4
-rw-r--r--library/cpp/string_utils/levenshtein_diff/levenshtein_diff_ut.cpp8
3 files changed, 12 insertions, 12 deletions
diff --git a/library/cpp/string_utils/base64/base64_ut.cpp b/library/cpp/string_utils/base64/base64_ut.cpp
index cb6ca7def2..83775f072c 100644
--- a/library/cpp/string_utils/base64/base64_ut.cpp
+++ b/library/cpp/string_utils/base64/base64_ut.cpp
@@ -74,12 +74,12 @@ using namespace std::string_view_literals;
}
namespace NB64Etalon {
- BASE64_UT_DECLARE_BASE64_IMPL(PLAIN32, plain32_base64_encode, plain32_base64_decode);
- BASE64_UT_DECLARE_BASE64_IMPL(PLAIN64, plain64_base64_encode, plain64_base64_decode);
- BASE64_UT_DECLARE_BASE64_IMPL(NEON32, neon32_base64_encode, neon32_base64_decode);
- BASE64_UT_DECLARE_BASE64_IMPL(NEON64, neon64_base64_encode, neon64_base64_decode);
- BASE64_UT_DECLARE_BASE64_IMPL(AVX2, avx2_base64_encode, avx2_base64_decode);
- BASE64_UT_DECLARE_BASE64_IMPL(SSSE3, ssse3_base64_encode, ssse3_base64_decode);
+ BASE64_UT_DECLARE_BASE64_IMPL(PLAIN32, plain32_base64_encode, plain32_base64_decode)
+ BASE64_UT_DECLARE_BASE64_IMPL(PLAIN64, plain64_base64_encode, plain64_base64_decode)
+ BASE64_UT_DECLARE_BASE64_IMPL(NEON32, neon32_base64_encode, neon32_base64_decode)
+ BASE64_UT_DECLARE_BASE64_IMPL(NEON64, neon64_base64_encode, neon64_base64_decode)
+ BASE64_UT_DECLARE_BASE64_IMPL(AVX2, avx2_base64_encode, avx2_base64_decode)
+ BASE64_UT_DECLARE_BASE64_IMPL(SSSE3, ssse3_base64_encode, ssse3_base64_decode)
#undef BASE64_UT_DECLARE_BASE64_IMPL
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;
-};
+}
diff --git a/library/cpp/string_utils/levenshtein_diff/levenshtein_diff_ut.cpp b/library/cpp/string_utils/levenshtein_diff/levenshtein_diff_ut.cpp
index 570a7f5c13..67c0f1da6f 100644
--- a/library/cpp/string_utils/levenshtein_diff/levenshtein_diff_ut.cpp
+++ b/library/cpp/string_utils/levenshtein_diff/levenshtein_diff_ut.cpp
@@ -8,19 +8,19 @@ namespace {
float unaryZeroWeigher(const char&) {
return 0.0f;
- };
+ }
float unaryMaxWeigher(const char&) {
return 1.0f;
- };
+ }
float binaryZeroWeigher(const char&, const char&) {
return 0.0f;
- };
+ }
float binaryMaxWeigher(const char&, const char&) {
return 1.0f;
- };
+ }
}