From 01cf29d0aaf8af7424fa82d8100cbb967860c712 Mon Sep 17 00:00:00 2001 From: Disi A Date: Sun, 26 May 2019 10:08:03 -0400 Subject: [PATCH] Fix typo in amalgamation README.md (TREAD->THREAD) (#15058) --- amalgamation/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/amalgamation/README.md b/amalgamation/README.md index 2ecf1626c1e7..b58776e372aa 100644 --- a/amalgamation/README.md +++ b/amalgamation/README.md @@ -114,17 +114,17 @@ To Change ``` #ifdef __GNUC__ - #define MX_TREAD_LOCAL __thread + #define MX_THREAD_LOCAL __thread #elif __STDC_VERSION__ >= 201112L - #define MX_TREAD_LOCAL _Thread_local + #define MX_THREAD_LOCAL _Thread_local #elif defined(_MSC_VER) - #define MX_TREAD_LOCAL __declspec(thread) + #define MX_THREAD_LOCAL __declspec(thread) #endif ``` To ``` -#define MX_TREAD_LOCAL __declspec(thread) +#define MX_THREAD_LOCAL __declspec(thread) ``` **To build arm32 compatible version (e.g. iPhone 5):**