Skip to content

Commit fb396b8

Browse files
authored
Merge pull request #105 from herrhotzenplotz/fix-freebsd-build
Fix build on FreeBSD Systems
2 parents 28aacf5 + 96158bf commit fb396b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libunicode/scan.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#include <string_view>
2424

2525
// clang-format off
26-
#if __has_include(<experimental/simd>) && defined(LIBUNICODE_USE_STD_SIMD) && !defined(__APPLE__)
26+
#if __has_include(<experimental/simd>) && defined(LIBUNICODE_USE_STD_SIMD) && !defined(__APPLE__) && !defined(__FreeBSD__)
2727
#define USE_STD_SIMD
2828
#include <experimental/simd>
2929
namespace stdx = std::experimental;

0 commit comments

Comments
 (0)