Fix missing semi-colon
All checks were successful
Release / release (push) Successful in 3s

This commit is contained in:
2026-05-10 02:22:46 +01:00
parent 9c727950d8
commit 7ffebe7dce
2 changed files with 2 additions and 2 deletions

View File

@@ -1 +1 @@
1.0.3
1.0.4

View File

@@ -25,7 +25,7 @@ struct WUUID {
#ifdef WAPP_PLATFORM_CPP
#define wapp_uuid_gen_uuid4() ([&](){ \
wapp_persist WUUID uuid = wapp_uuid_create(); \
return *(wapp_uuid_init_uuid4(&uuid)) \
return *(wapp_uuid_init_uuid4(&uuid)); \
}())
#else
#define wapp_uuid_gen_uuid4() *(wapp_uuid_init_uuid4(&wapp_uuid_create()))