Skip to content

Commit

Permalink
Fix <arm_neon.h> inclusion guard. (#717)
Browse files Browse the repository at this point in the history
  • Loading branch information
eustas authored Oct 16, 2018
1 parent f7cbc97 commit ce8951c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions c/dec/decode.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@

#include <brotli/decode.h>

#if defined(BROTLI_TARGET_NEON)
#include <arm_neon.h>
#endif

#include <stdlib.h> /* free, malloc */
#include <string.h> /* memcpy, memset */

Expand All @@ -24,6 +20,10 @@
#include "./prefix.h"
#include "./state.h"

#if defined(BROTLI_TARGET_NEON)
#include <arm_neon.h>
#endif

#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
#endif
Expand Down

0 comments on commit ce8951c

Please sign in to comment.