Skip to content

Commit d49758f

Browse files
Fix compilation issues
1 parent b3665fd commit d49758f

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

tlm_teamd/main.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
#include <select.h>
77
#include <dbconnector.h>
88
#include <subscriberstatetable.h>
9-
#include <string.h>
109

1110
#include "teamdctl_mgr.h"
1211
#include "values_store.h"
@@ -32,7 +31,7 @@ void update_interfaces(swss::SubscriberStateTable & table, TeamdCtlMgr & mgr)
3231
const auto & lag_name = kfvKey(entry);
3332
const auto & op = kfvOp(entry);
3433

35-
if (lag_name.find(VLAN_SUB_INTERFACE_SEPARATOR) != string::npos)
34+
if (lag_name.find(VLAN_SUB_INTERFACE_SEPARATOR) != std::string::npos)
3635
{
3736
SWSS_LOG_INFO("Skip subintf %s statedb event", lag_name.c_str());
3837
continue;

0 commit comments

Comments
 (0)