general c++ question/confusion. in `osquery/filesy...
# core
c
general c++ question/confusion. in
osquery/filesystem/windows/fileops.cpp
there are 2 macros defined for
min
and
max
. What’s the reason for doing that instead of using, say,
std::min
and
std::max
?
s
AFAIK I think it’s because we include
windows.h
which has macros for
min
and
max
and that could interfere with STL