mark identity parameter in log_ functions optional

This commit is contained in:
veclavtalica 2025-02-20 19:52:14 +03:00
parent a231d650f2
commit 6eb0730c52

View File

@ -308,7 +308,7 @@
"header": "twn_util.h", "header": "twn_util.h",
"params": [ "params": [
{ "name": "value", "type": "Vec2" }, { "name": "value", "type": "Vec2" },
{ "name": "identity", "type": "char *" } { "name": "identity", "type": "char *", "default": {} }
] ]
}, },
@ -318,7 +318,7 @@
"header": "twn_util.h", "header": "twn_util.h",
"params": [ "params": [
{ "name": "value", "type": "Vec3" }, { "name": "value", "type": "Vec3" },
{ "name": "identity", "type": "char *" } { "name": "identity", "type": "char *", "default": {} }
] ]
}, },
@ -328,7 +328,7 @@
"header": "twn_util.h", "header": "twn_util.h",
"params": [ "params": [
{ "name": "value", "type": "Rect" }, { "name": "value", "type": "Rect" },
{ "name": "identity", "type": "char *" } { "name": "identity", "type": "char *", "default": {} }
] ]
}, },