svf-lib 1.0.2396 → 1.0.2398

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.
@@ -216,39 +216,39 @@ public:
216
216
  /// Reload operator
217
217
  //{%
218
218
  // Overloads the equality operator to compare two BoundedInt objects.
219
- friend BoundedInt operator==(const BoundedInt& lhs, const BoundedInt& rhs)
219
+ friend bool operator==(const BoundedInt& lhs, const BoundedInt& rhs)
220
220
  {
221
221
  return lhs.equal(rhs);
222
222
  }
223
223
 
224
224
  // Overloads the inequality operator to compare two BoundedInt objects.
225
- friend BoundedInt operator!=(const BoundedInt& lhs, const BoundedInt& rhs)
225
+ friend bool operator!=(const BoundedInt& lhs, const BoundedInt& rhs)
226
226
  {
227
227
  return !lhs.equal(rhs);
228
228
  }
229
229
 
230
230
  // Overloads the greater than operator to compare two BoundedInt objects.
231
- friend BoundedInt operator>(const BoundedInt& lhs, const BoundedInt& rhs)
231
+ friend bool operator>(const BoundedInt& lhs, const BoundedInt& rhs)
232
232
  {
233
233
  return !lhs.leq(rhs);
234
234
  }
235
235
 
236
236
  // Overloads the less than operator to compare two BoundedInt objects.
237
- friend BoundedInt operator<(const BoundedInt& lhs, const BoundedInt& rhs)
237
+ friend bool operator<(const BoundedInt& lhs, const BoundedInt& rhs)
238
238
  {
239
239
  return !lhs.geq(rhs);
240
240
  }
241
241
 
242
242
  // Overloads the less than or equal to operator to compare two BoundedInt
243
243
  // objects.
244
- friend BoundedInt operator<=(const BoundedInt& lhs, const BoundedInt& rhs)
244
+ friend bool operator<=(const BoundedInt& lhs, const BoundedInt& rhs)
245
245
  {
246
246
  return lhs.leq(rhs);
247
247
  }
248
248
 
249
249
  // Overloads the greater than or equal to operator to compare two BoundedInt
250
250
  // objects.
251
- friend BoundedInt operator>=(const BoundedInt& lhs, const BoundedInt& rhs)
251
+ friend bool operator>=(const BoundedInt& lhs, const BoundedInt& rhs)
252
252
  {
253
253
  return lhs.geq(rhs);
254
254
  }
@@ -216,39 +216,39 @@ public:
216
216
  /// Reload operator
217
217
  //{%
218
218
  // Overloads the equality operator to compare two BoundedInt objects.
219
- friend BoundedInt operator==(const BoundedInt& lhs, const BoundedInt& rhs)
219
+ friend bool operator==(const BoundedInt& lhs, const BoundedInt& rhs)
220
220
  {
221
221
  return lhs.equal(rhs);
222
222
  }
223
223
 
224
224
  // Overloads the inequality operator to compare two BoundedInt objects.
225
- friend BoundedInt operator!=(const BoundedInt& lhs, const BoundedInt& rhs)
225
+ friend bool operator!=(const BoundedInt& lhs, const BoundedInt& rhs)
226
226
  {
227
227
  return !lhs.equal(rhs);
228
228
  }
229
229
 
230
230
  // Overloads the greater than operator to compare two BoundedInt objects.
231
- friend BoundedInt operator>(const BoundedInt& lhs, const BoundedInt& rhs)
231
+ friend bool operator>(const BoundedInt& lhs, const BoundedInt& rhs)
232
232
  {
233
233
  return !lhs.leq(rhs);
234
234
  }
235
235
 
236
236
  // Overloads the less than operator to compare two BoundedInt objects.
237
- friend BoundedInt operator<(const BoundedInt& lhs, const BoundedInt& rhs)
237
+ friend bool operator<(const BoundedInt& lhs, const BoundedInt& rhs)
238
238
  {
239
239
  return !lhs.geq(rhs);
240
240
  }
241
241
 
242
242
  // Overloads the less than or equal to operator to compare two BoundedInt
243
243
  // objects.
244
- friend BoundedInt operator<=(const BoundedInt& lhs, const BoundedInt& rhs)
244
+ friend bool operator<=(const BoundedInt& lhs, const BoundedInt& rhs)
245
245
  {
246
246
  return lhs.leq(rhs);
247
247
  }
248
248
 
249
249
  // Overloads the greater than or equal to operator to compare two BoundedInt
250
250
  // objects.
251
- friend BoundedInt operator>=(const BoundedInt& lhs, const BoundedInt& rhs)
251
+ friend bool operator>=(const BoundedInt& lhs, const BoundedInt& rhs)
252
252
  {
253
253
  return lhs.geq(rhs);
254
254
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svf-lib",
3
- "version": "1.0.2396",
3
+ "version": "1.0.2398",
4
4
  "description": "SVF's npm support",
5
5
  "main": "index.js",
6
6
  "scripts": {