Skip to content

Commit

Permalink
Fix typo in amalgamation README.md (TREAD->THREAD) (apache#15058)
Browse files Browse the repository at this point in the history
  • Loading branch information
adis300 authored and pengzhao-intel committed May 26, 2019
1 parent 7edd69e commit 01cf29d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions amalgamation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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):**
Expand Down

0 comments on commit 01cf29d

Please sign in to comment.