blueloveTH hace 2 años
padre
commit
cd05f7c11e
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  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