Skip to content

Commit

Permalink
clean up condition to detect MSCV
Browse files Browse the repository at this point in the history
  • Loading branch information
zdenop committed Dec 22, 2021
1 parent 771c1e9 commit f65fae8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lstm/lstm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#include <cstdlib>
#include <sstream> // for std::ostringstream

#if !defined(__GNUC__) && defined(_MSC_VER) && !defined(__clang__)
#if defined(_MSC_VER) && !defined(__clang__)
# include <intrin.h> // _BitScanReverse
#endif

Expand Down

0 comments on commit f65fae8

Please sign in to comment.