aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/netliba
diff options
context:
space:
mode:
authorbulatman <bulatman@yandex-team.com>2023-06-08 20:05:16 +0300
committerbulatman <bulatman@yandex-team.com>2023-06-08 20:05:16 +0300
commitdf6af3ee4741c667cf0c449696f768186bdc5752 (patch)
tree21ad8fed13c87e0ebec4bb5456f667a79d11c745 /library/cpp/netliba
parent8642bc755ab5b51752619694224388b2d247c737 (diff)
downloadydb-df6af3ee4741c667cf0c449696f768186bdc5752.tar.gz
Require semicolon after saveload macroses
Diffstat (limited to 'library/cpp/netliba')
-rw-r--r--library/cpp/netliba/v6/ib_collective.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/netliba/v6/ib_collective.h b/library/cpp/netliba/v6/ib_collective.h
index 48ffd29b34..2ce790e960 100644
--- a/library/cpp/netliba/v6/ib_collective.h
+++ b/library/cpp/netliba/v6/ib_collective.h
@@ -6,7 +6,7 @@ namespace NNetliba {
struct TCollectiveInit {
int Size, Rank;
- SAVELOAD(Size, Rank)
+ SAVELOAD(Size, Rank);
};
struct TCollectiveLinkSet {
@@ -17,7 +17,7 @@ namespace NNetliba {
TVector<TVector<int>> HostGroup; // HostGroup[0] - switchId, HostGroup[1] - hostId within the switch
TVector<TLinkInfo> Links;
- SAVELOAD(Hosts, HostGroup, Links)
+ SAVELOAD(Hosts, HostGroup, Links);
};
struct IAllDataSync: public TThrRefBase {