Hi, I use one library which is very important and untouchable. The problem is that library declare min, max function, so when I include STL header in project, they conflict. I want to disable min, max function in STL (like #define NOMNMAX) if I could. If I can't, what would be solution?
Important : Sorry, It's not Macro. Two functions are template functions.
like
template<T>
T min(const T& a, const T& b) { a < b ? a : b; }
Thanks, in advance.