mirror of https://github.com/google/brotli
Fix `<arm_neon.h>` inclusion guard. (#717)
This commit is contained in:
parent
f7cbc97c96
commit
ce8951c3e9
|
@ -6,10 +6,6 @@
|
||||||
|
|
||||||
#include <brotli/decode.h>
|
#include <brotli/decode.h>
|
||||||
|
|
||||||
#if defined(BROTLI_TARGET_NEON)
|
|
||||||
#include <arm_neon.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <stdlib.h> /* free, malloc */
|
#include <stdlib.h> /* free, malloc */
|
||||||
#include <string.h> /* memcpy, memset */
|
#include <string.h> /* memcpy, memset */
|
||||||
|
|
||||||
|
@ -24,6 +20,10 @@
|
||||||
#include "./prefix.h"
|
#include "./prefix.h"
|
||||||
#include "./state.h"
|
#include "./state.h"
|
||||||
|
|
||||||
|
#if defined(BROTLI_TARGET_NEON)
|
||||||
|
#include <arm_neon.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(__cplusplus) || defined(c_plusplus)
|
#if defined(__cplusplus) || defined(c_plusplus)
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue