diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-04-18 11:53:29 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2019-04-18 12:39:11 +0200 |
commit | 88cb9bd27f05f6622b4c8205d2811e4aad74d6e3 (patch) | |
tree | 12faaaa31169709cecf0daea0d63fa122592c09a /thirdparty/zstd/common/compiler.h | |
parent | 6697fd9a05859914fc320b4b4321fd9fb6170f71 (diff) | |
download | redot-engine-88cb9bd27f05f6622b4c8205d2811e4aad74d6e3.tar.gz |
zstd: Update to upstream 1.4.0
One step towards fixing #17374 as most experimental APIs we use are now
part of the stable 1.4.0.
Diffstat (limited to 'thirdparty/zstd/common/compiler.h')
-rw-r--r-- | thirdparty/zstd/common/compiler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/thirdparty/zstd/common/compiler.h b/thirdparty/zstd/common/compiler.h index 7f561282ca..0836e3ed27 100644 --- a/thirdparty/zstd/common/compiler.h +++ b/thirdparty/zstd/common/compiler.h @@ -40,7 +40,7 @@ /** * FORCE_INLINE_TEMPLATE is used to define C "templates", which take constant - * parameters. They must be inlined for the compiler to elimininate the constant + * parameters. They must be inlined for the compiler to eliminate the constant * branches. */ #define FORCE_INLINE_TEMPLATE static INLINE_KEYWORD FORCE_INLINE_ATTR |