variant icon indicating copy to clipboard operation
variant copied to clipboard

Fixed to work with Visual Studio 2017 Express

Open SNiLD opened this issue 5 years ago • 0 comments

Compiling in Windows with Visual Studio has a well known problem that they have MIN and MAX macros that conflict with other functions in the standard library like std::numeric_limits<T>::max and std::numeric_limits<T>::min. The standard portable solution is to wrap the function call in parentheses (std::numeric_limits<T>::max).

SNiLD avatar Oct 30 '20 09:10 SNiLD