Skip to content

Commit d4cd6e3

Browse files
Add compiler specific includes in distance functions
1 parent b90e490 commit d4cd6e3

9 files changed

Lines changed: 9 additions & 0 deletions

Source/DistanceFunctions/arm_dice_distance.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
* limitations under the License.
2828
*/
2929

30+
#include "arm_compiler_specific.h"
3031
#include "dsp/distance_functions.h"
3132
#include <limits.h>
3233
#include <math.h>

Source/DistanceFunctions/arm_hamming_distance.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
* limitations under the License.
2828
*/
2929

30+
#include "arm_compiler_specific.h"
3031
#include "dsp/distance_functions.h"
3132
#include <limits.h>
3233
#include <math.h>

Source/DistanceFunctions/arm_jaccard_distance.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
* limitations under the License.
2828
*/
2929

30+
#include "arm_compiler_specific.h"
3031
#include "dsp/distance_functions.h"
3132
#include <limits.h>
3233
#include <math.h>

Source/DistanceFunctions/arm_kulsinski_distance.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
* limitations under the License.
2828
*/
2929

30+
#include "arm_compiler_specific.h"
3031
#include "dsp/distance_functions.h"
3132
#include <limits.h>
3233
#include <math.h>

Source/DistanceFunctions/arm_rogerstanimoto_distance.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
* limitations under the License.
2828
*/
2929

30+
#include "arm_compiler_specific.h"
3031
#include "dsp/distance_functions.h"
3132
#include <limits.h>
3233
#include <math.h>

Source/DistanceFunctions/arm_russellrao_distance.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
* limitations under the License.
2828
*/
2929

30+
#include "arm_compiler_specific.h"
3031
#include "dsp/distance_functions.h"
3132
#include <limits.h>
3233
#include <math.h>

Source/DistanceFunctions/arm_sokalmichener_distance.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
* limitations under the License.
2828
*/
2929

30+
#include "arm_compiler_specific.h"
3031
#include "dsp/distance_functions.h"
3132
#include <limits.h>
3233
#include <math.h>

Source/DistanceFunctions/arm_sokalsneath_distance.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
* limitations under the License.
2828
*/
2929

30+
#include "arm_compiler_specific.h"
3031
#include "dsp/distance_functions.h"
3132
#include <limits.h>
3233
#include <math.h>

Source/DistanceFunctions/arm_yule_distance.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
* limitations under the License.
2828
*/
2929

30+
#include "arm_compiler_specific.h"
3031
#include "dsp/distance_functions.h"
3132
#include <limits.h>
3233
#include <math.h>

0 commit comments

Comments
 (0)