mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-23 02:27:00 +08:00
Replaced macros Min() and Max() with corresponding STL algorithms std::min() and std::max()
This commit is contained in:
@@ -46,9 +46,6 @@ typedef unsigned __int64 uint64_t;
|
||||
|
||||
#endif
|
||||
|
||||
#define Min(x, y) (((x) < (y)) ? (x) : (y))
|
||||
#define Max(x, y) (((x) < (y)) ? (y) : (x))
|
||||
|
||||
////
|
||||
//// Configuration
|
||||
////
|
||||
|
||||
Reference in New Issue
Block a user