Skip to content

Commit

Permalink
fix to prevent double define
Browse files Browse the repository at this point in the history
  • Loading branch information
braindigitalis committed Sep 16, 2023
1 parent 13bc756 commit c264335
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/dpp/isa_detection.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#if defined _MSC_VER || defined __GNUC__ || defined __clang__

/* Sanity check for cases of broken detection */
#if !defined(__i386__) && !defined(__x86_64__)
#if !defined(__i386__) && !defined(__x86_64__) && !defined(T_fallback)
#define T_fallback 1
#endif

Expand Down

0 comments on commit c264335

Please sign in to comment.