Skip to content
Snippets Groups Projects
Commit 29e54406 authored by Myles Watson's avatar Myles Watson
Browse files

embdrv: Fix include ordering before clang-format

clang-format re-orders #include statements.  Fix the includes
so that order is less important.

Test: mma -j32

Change-Id: Ia548c2c7d5669e0e759b3c5e7fa12a1ec48cc03e
parent a2356a4b
No related branches found
No related tags found
No related merge requests found
......@@ -25,6 +25,8 @@
#ifndef SBC_DCT_H
#define SBC_DCT_H
#include "sbc_enc_func_declare.h"
#if (SBC_ARM_ASM_OPT == TRUE)
#define SBC_MULT_32_16_SIMPLIFIED(s16In2, s32In1, s32OutLow) \
{ \
......
......@@ -25,7 +25,7 @@
#ifndef SBC_FUNCDECLARE_H
#define SBC_FUNCDECLARE_H
/*#include "sbc_encoder.h"*/
#include "sbc_encoder.h"
/* Global data */
#if (SBC_IS_64_MULT_IN_WINDOW_ACCU == FALSE)
extern const int16_t gas32CoeffFor4SBs[];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment