1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-15 14:54:09 +02:00

add missing fallthroughs

This commit is contained in:
hermansimensen 2023-08-06 20:33:52 +02:00
parent eeea06a22b
commit 09131c1df0

View file

@ -42,8 +42,8 @@ class WebAssembly
case typeof(double):
s.Append('d');
case typeof(c_ulong): fallthrough;
case typeof(c_ulonglong):
case typeof(c_longlong):
case typeof(c_ulonglong): fallthrough;
case typeof(c_longlong): fallthrough;
case typeof(c_long):
s.Append('j');
default: