aboutsummaryrefslogtreecommitdiffstats
path: root/util/string
diff options
context:
space:
mode:
authorbulatman <bulatman@yandex-team.com>2023-06-12 15:39:10 +0300
committerbulatman <bulatman@yandex-team.com>2023-06-12 15:39:10 +0300
commit7c5a27ccb26f24801b005c5093b128de084476eb (patch)
tree5415fc21b4fddc74e3ac4be7812e2fcf696866fd /util/string
parent3826e7e962dc4328f8683d0a753159098c40daf9 (diff)
downloadydb-7c5a27ccb26f24801b005c5093b128de084476eb.tar.gz
Remove extra semicolon (util)
Diffstat (limited to 'util/string')
-rw-r--r--util/string/cast_ut.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/util/string/cast_ut.cpp b/util/string/cast_ut.cpp
index 662833c7009..aef797eddfe 100644
--- a/util/string/cast_ut.cpp
+++ b/util/string/cast_ut.cpp
@@ -122,7 +122,7 @@ struct TRet<bool> {
template <class A>
inline TRet<A> F() {
return TRet<A>();
-};
+}
#if 0
template <class T>
@@ -153,7 +153,7 @@ Y_UNIT_TEST_SUITE(TCastTest) {
template <class A>
inline TRet<A> F() {
return TRet<A>();
- };
+ }
template <class TFloat>
void GoodFloatTester(const char* str, const TFloat canonValue, const double eps) {
@@ -605,4 +605,4 @@ Y_UNIT_TEST_SUITE(TCastTest) {
UNIT_ASSERT_VALUES_EQUAL(TStringBuf(TIntStringBuf<i8, 2>(127)), TStringBuf("1111111"));
UNIT_ASSERT_VALUES_EQUAL(TStringBuf(TIntStringBuf<i8, 2>(-128)), TStringBuf("-10000000"));
}
-};
+}