svf-lib 1.0.1552 → 1.0.1554

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.
@@ -344,7 +344,8 @@ public:
344
344
  inline void addTypeInfo(const SVFType* ty)
345
345
  {
346
346
  bool inserted = svfTypes.insert(ty).second;
347
- assert(inserted && "this type info has been added before");
347
+ if(!inserted)
348
+ assert(false && "this type info has been added before");
348
349
  }
349
350
 
350
351
  inline void addStInfo(StInfo* stInfo)
@@ -344,7 +344,8 @@ public:
344
344
  inline void addTypeInfo(const SVFType* ty)
345
345
  {
346
346
  bool inserted = svfTypes.insert(ty).second;
347
- assert(inserted && "this type info has been added before");
347
+ if(!inserted)
348
+ assert(false && "this type info has been added before");
348
349
  }
349
350
 
350
351
  inline void addStInfo(StInfo* stInfo)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svf-lib",
3
- "version": "1.0.1552",
3
+ "version": "1.0.1554",
4
4
  "description": "SVF's npm support",
5
5
  "main": "index.js",
6
6
  "scripts": {