Skip to content

Commit

Permalink
remove blackhole_flag
Browse files Browse the repository at this point in the history
  • Loading branch information
shuaishang committed Sep 19, 2024
1 parent acd8b33 commit 0fea2eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions orchagent/routeorch.h
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ struct RouteBulkContext
bool excp_intfs_flag;
// using_temp_nhg will track if the NhgOrch's owned NHG is temporary or not
bool using_temp_nhg;
bool blackhole_flag;
std::vector<string> ipv;
std::vector<string> alsv;
std::vector<string> vni_labelv;
Expand All @@ -137,7 +136,9 @@ struct RouteBulkContext
bool is_set; // True if set operation

RouteBulkContext(const std::string& key, bool is_set)
: key(key), excp_intfs_flag(false), using_temp_nhg(false), is_set(is_set), blackhole_flag(false)
: key(key), excp_intfs_flag(false), using_temp_nhg(false), is_set(is_set)
{
}

// Disable any copy constructors
RouteBulkContext(const RouteBulkContext&) = delete;
Expand All @@ -151,7 +152,6 @@ struct RouteBulkContext
ipv.clear();
vrf_id = SAI_NULL_OBJECT_ID;
excp_intfs_flag = false;
blackhole_flag = false;
using_temp_nhg = false;
key.clear();
protocol.clear();
Expand Down

0 comments on commit 0fea2eb

Please sign in to comment.