We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6ccfb2 commit 3817aa3Copy full SHA for 3817aa3
arch/simddetect.h
@@ -15,6 +15,8 @@
15
// limitations under the License.
16
///////////////////////////////////////////////////////////////////////
17
18
+#include "platform.h"
19
+
20
// Architecture detector. Add code here to detect any other architectures for
21
// SIMD-based faster dot product functions. Intended to be a single static
22
// object, but it does no real harm to have more than one.
@@ -37,7 +39,7 @@ class SIMDDetect {
37
39
// Singleton.
38
40
static SIMDDetect detector;
41
// If true, then AVX has been detected.
- static bool avx_available_;
42
+ static TESS_API bool avx_available_;
43
// If true, then SSe4.1 has been detected.
- static bool sse_available_;
44
+ static TESS_API bool sse_available_;
45
};
0 commit comments