Fix msvc macro

closes https://github.com/official-stockfish/Stockfish/pull/6449

No functional change
This commit is contained in:
Timothy Herchen
2025-11-30 21:58:35 +01:00
committed by Disservin
parent 45d034fa50
commit 7c7c574e6b
+1 -1
View File
@@ -414,7 +414,7 @@ void move_to_front(std::vector<T>& vec, Predicate pred) {
#if defined(__GNUC__)
#define sf_always_inline __attribute__((always_inline))
#elif defined(__MSVC)
#elif defined(_MSC_VER)
#define sf_always_inline __forceinline
#else
// do nothign for other compilers