aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/compproto
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/compproto
parent91497eb27263e2feb35b53a90773e7207752a2ec (diff)
downloadydb-d570836295decdb827b4f95d75ebf2d8d9232b9b.tar.gz
Remove extra semicolon (library)
Diffstat (limited to 'library/cpp/compproto')
-rw-r--r--library/cpp/compproto/compproto_ut.cpp2
-rw-r--r--library/cpp/compproto/huff.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/compproto/compproto_ut.cpp b/library/cpp/compproto/compproto_ut.cpp
index 9393be967a..f70b533d5d 100644
--- a/library/cpp/compproto/compproto_ut.cpp
+++ b/library/cpp/compproto/compproto_ut.cpp
@@ -20,7 +20,7 @@ static ui32 PseudoRandom(ui32 max) {
gSeed *= 419;
gSeed = gSeed ^ (ui64(max) << 17);
return gSeed % max;
-};
+}
enum ECompMode {
CM_SINGLEPASS,
diff --git a/library/cpp/compproto/huff.h b/library/cpp/compproto/huff.h
index fa5c139189..3d93c0184d 100644
--- a/library/cpp/compproto/huff.h
+++ b/library/cpp/compproto/huff.h
@@ -190,7 +190,7 @@ namespace NCompProto {
Max = ::Max(Max, (ui64)value);
Total += weight;
AddMap(value, weight);
- };
+ }
};
struct THuffNode {
@@ -273,7 +273,7 @@ namespace NCompProto {
}
return ret;
- };
+ }
struct TCoderEntry {
ui32 MinValue;