From df6af3ee4741c667cf0c449696f768186bdc5752 Mon Sep 17 00:00:00 2001 From: bulatman <bulatman@yandex-team.com> Date: Thu, 8 Jun 2023 20:05:16 +0300 Subject: Require semicolon after saveload macroses --- library/cpp/netliba/v6/ib_collective.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'library/cpp/netliba/v6') 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 { -- cgit v1.2.3