svf-lib 1.0.1662 → 1.0.1663

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.
@@ -99,6 +99,8 @@ public:
99
99
  return "ConstantExpr";
100
100
  }
101
101
 
102
+ using ExeState::operator==;
103
+ using ExeState::operator!=;
102
104
  /// Exposed APIs
103
105
  //{%
104
106
  bool operator==(const ConsExeState &rhs) const;
@@ -418,6 +418,8 @@ public:
418
418
  return true;
419
419
  }
420
420
 
421
+ using ExeState::operator==;
422
+ using ExeState::operator!=;
421
423
  bool operator==(const IntervalExeState &rhs) const
422
424
  {
423
425
  return ExeState::operator==(rhs) && eqVarToValMap(_varToItvVal, rhs.getVarToVal()) &&
@@ -88,6 +88,7 @@ public:
88
88
  _icfgEdge = edge;
89
89
  }
90
90
 
91
+ using SVF::GenericEdge<NodeType>::operator==;
91
92
  /// Add the hash function for std::set (we also can overload operator< to implement this)
92
93
  // and duplicated elements in the set are not inserted (binary tree comparison)
93
94
  //@{
@@ -724,4 +725,4 @@ struct DOTGraphTraits<SVF::ICFGWrapper *> : public DOTGraphTraits<SVF::SVFIR *>
724
725
 
725
726
  } // End namespace SVF
726
727
 
727
- #endif //SVF_ICFGWRAPPER_H
728
+ #endif //SVF_ICFGWRAPPER_H
@@ -31,7 +31,7 @@
31
31
  #define INCLUDE_SVFIR_SVFTYPE_H_
32
32
 
33
33
  #include "Util/SparseBitVector.h"
34
-
34
+ #include <cstdint>
35
35
  #include <deque>
36
36
  #include <iostream>
37
37
  #include <list>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svf-lib",
3
- "version": "1.0.1662",
3
+ "version": "1.0.1663",
4
4
  "description": "SVF's npm support",
5
5
  "main": "index.js",
6
6
  "scripts": {