Merge branch 'Flamefire-patch-2' into develop

This commit is contained in:
Andrzej Krzemienski
2026-07-17 00:19:12 +02:00
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -10,6 +10,7 @@ on:
env:
UBSAN_OPTIONS: print_stacktrace=1
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
jobs:
posix:
+1 -1
View File
@@ -27,7 +27,7 @@ struct MyBool
struct MyExplicitBool
{
bool b;
MyExplicitBool (bool b) : b(b) {}
explicit MyExplicitBool (bool b) : b(b) {}
operator bool() const { return b; };
};