We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8a67f26 + 213a685 commit 083c701Copy full SHA for 083c701
src/model/Network.cpp
@@ -358,6 +358,7 @@ namespace aalwines
358
for(auto& r : _routers)
359
{
360
if(r->is_null()) continue;
361
+ if(r->interfaces().empty()) continue;
362
s << " <router name=\"" << r->name() << "\">\n";
363
s << " <interfaces>\n";
364
for(auto& inf : r->interfaces())
src/model/Query.h
@@ -52,7 +52,7 @@ namespace aalwines {
52
uint8_t _mask = 0;
53
uint64_t _value = 0;
54
public:
55
- friend class ptrie::byte_iterator<label_t>;
+ friend struct ptrie::byte_iterator<label_t>;
56
label_t()
57
58
_type = NONE;
0 commit comments