aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--coroutine/win64/Context.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/coroutine/win64/Context.h b/coroutine/win64/Context.h
index 1c78dd5b14..eb4540b779 100644
--- a/coroutine/win64/Context.h
+++ b/coroutine/win64/Context.h
@@ -16,8 +16,10 @@ extern "C" {
#define COROUTINE __declspec(noreturn) void
-enum {COROUTINE_REGISTERS = 8};
-const size_t COROUTINE_XMM_REGISTERS = 1+10*2;
+enum {
+ COROUTINE_REGISTERS = 8,
+ COROUTINE_XMM_REGISTERS = 1+10*2,
+};
typedef struct
{