diff options
author | bulatman <bulatman@yandex-team.com> | 2023-06-08 20:05:16 +0300 |
---|---|---|
committer | bulatman <bulatman@yandex-team.com> | 2023-06-08 20:05:16 +0300 |
commit | df6af3ee4741c667cf0c449696f768186bdc5752 (patch) | |
tree | 21ad8fed13c87e0ebec4bb5456f667a79d11c745 /library/cpp/netliba | |
parent | 8642bc755ab5b51752619694224388b2d247c737 (diff) | |
download | ydb-df6af3ee4741c667cf0c449696f768186bdc5752.tar.gz |
Require semicolon after saveload macroses
Diffstat (limited to 'library/cpp/netliba')
-rw-r--r-- | library/cpp/netliba/v6/ib_collective.h | 4 |
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 { |