We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d598dea commit 5863ed3Copy full SHA for 5863ed3
syncd/SwitchNotifications.cpp
@@ -5,7 +5,7 @@
5
using namespace syncd;
6
7
SwitchNotifications::SlotBase::SlotBase(
8
- _In_ sai_switch_notifications_t sn):
+ _In_ const sai_switch_notifications_t& sn):
9
m_handler(nullptr),
10
m_sn(sn)
11
{
syncd/SwitchNotifications.h
@@ -20,7 +20,7 @@ namespace syncd
20
public:
21
22
SlotBase(
23
- _In_ sai_switch_notifications_t sn);
+ _In_ const sai_switch_notifications_t& sn);
24
25
virtual ~SlotBase();
26
0 commit comments