blueloveTH před 2 roky
rodič
revize
cd05f7c11e
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  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