svf-lib 1.0.1655 → 1.0.1656
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
Binary file
|
|
Binary file
|
|
@@ -78,17 +78,17 @@ public:
|
|
|
78
78
|
|
|
79
79
|
inline bool isBackICFGEdge(const ICFGEdge *edge) const
|
|
80
80
|
{
|
|
81
|
-
return backICFGEdges.find(edge) !=
|
|
81
|
+
return backICFGEdges.find(edge) != backICFGEdges.end();
|
|
82
82
|
}
|
|
83
83
|
|
|
84
84
|
inline bool isInICFGEdge(const ICFGEdge *edge) const
|
|
85
85
|
{
|
|
86
|
-
return inICFGEdges.find(edge) !=
|
|
86
|
+
return inICFGEdges.find(edge) != inICFGEdges.end();
|
|
87
87
|
}
|
|
88
88
|
|
|
89
89
|
inline bool isOutICFGEdge(const ICFGEdge *edge) const
|
|
90
90
|
{
|
|
91
|
-
return outICFGEdges.find(edge) !=
|
|
91
|
+
return outICFGEdges.find(edge) != outICFGEdges.end();
|
|
92
92
|
}
|
|
93
93
|
|
|
94
94
|
inline void addEntryICFGEdge(const ICFGEdge *edge)
|