From b4a6aed67ba046e6420c37e87a4871444060c2cf Mon Sep 17 00:00:00 2001 From: "Zachary H. Jones" Date: Sun, 18 Sep 2022 00:43:13 -0400 Subject: [PATCH] Removed semi-colon after function definition. --- include/pfs/types.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/pfs/types.hpp b/include/pfs/types.hpp index 4ead6d7..dd5a12b 100644 --- a/include/pfs/types.hpp +++ b/include/pfs/types.hpp @@ -430,7 +430,7 @@ struct zone bool operator<(const zone& rhs) const { return (node_id < rhs.node_id) || (name < rhs.name); - }; + } }; using ipv4 = uint32_t;