blueloveTH 2 lat temu
rodzic
commit
cd05f7c11e
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      include/pocketpy/config.h

+ 2 - 2
include/pocketpy/config.h

@@ -78,10 +78,10 @@
 
 #ifdef _MSC_VER
 #define PK_ENABLE_COMPUTED_GOTO		0
-#define PK_UNREACHABLE()				__assume(0)
+#define PK_UNREACHABLE()			__assume(0);
 #else
 #define PK_ENABLE_COMPUTED_GOTO		1
-#define PK_UNREACHABLE()				__builtin_unreachable()
+#define PK_UNREACHABLE()			__builtin_unreachable();
 #endif