From 771c1e9c9b77fdd5fd8df18cbb87acc7c5080cee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zdenko=20Podobn=C3=BD?= Date: Mon, 20 Dec 2021 14:40:45 +0100 Subject: [PATCH] fix lstm.cpp build with clang --- src/lstm/lstm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lstm/lstm.cpp b/src/lstm/lstm.cpp index 01d77f929..9be44a78b 100644 --- a/src/lstm/lstm.cpp +++ b/src/lstm/lstm.cpp @@ -28,7 +28,7 @@ #include #include // for std::ostringstream -#if !defined(__GNUC__) && defined(_MSC_VER) +#if !defined(__GNUC__) && defined(_MSC_VER) && !defined(__clang__) # include // _BitScanReverse #endif