Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mvladic committed Dec 17, 2024
1 parent 627d6c6 commit 8e0775a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion resources/eez-framework-amalgamation/eez-flow.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Autogenerated on December 14, 2024 11:41:16 AM from eez-framework commit 48ec9b6f2bcdc7677b3f9485f6e6dbc07fbad732 */
/* Autogenerated on December 17, 2024 7:08:39 PM from eez-framework commit 5ca49b64d830b3cd1abdc4270f2b9cbc48d7a9f3 */
/*
* eez-framework
*
Expand Down Expand Up @@ -2655,6 +2655,9 @@ bool Value::toBool(int *err) const {
if (isJson()) {
return int32Value != 0;
}
if (isWidget()) {
return pVoidValue != 0;
}
if (err) {
*err = 1;
}
Expand Down Expand Up @@ -7998,6 +8001,9 @@ bool is_equal(const Value& a1, const Value& b1) {
}
return memcmp(aBlobRef->blob, bBlobRef->blob, aBlobRef->len) == 0;
}
if (a.getType() == b.getType()) {
return a == b;
}
return a.toDouble() == b.toDouble();
}
bool is_less(const Value& a1, const Value& b1) {
Expand Down
2 changes: 1 addition & 1 deletion resources/eez-framework-amalgamation/eez-flow.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Autogenerated on December 14, 2024 11:41:16 AM from eez-framework commit 48ec9b6f2bcdc7677b3f9485f6e6dbc07fbad732 */
/* Autogenerated on December 17, 2024 7:08:39 PM from eez-framework commit 5ca49b64d830b3cd1abdc4270f2b9cbc48d7a9f3 */
/*
* eez-framework
*
Expand Down

0 comments on commit 8e0775a

Please sign in to comment.