mirror of
https://github.com/official-stockfish/Stockfish.git
synced 2026-07-22 12:47:08 +00:00
Fix msvc macro
closes https://github.com/official-stockfish/Stockfish/pull/6449 No functional change
This commit is contained in:
committed by
Disservin
parent
45d034fa50
commit
7c7c574e6b
+1
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user