/* ==================================================================== * Copyright (c) 2003-2006, Martin Hauner * http://subcommander.tigris.org * * Subcommander is licensed as described in the file doc/COPYING, which * you should have received as part of this distribution. * ==================================================================== */ #ifndef _SC_MAX_H #define _SC_MAX_H // Windows #defines min/max and that breaks std::max/std::min // include after stl headers. #ifdef _WIN32 #undef max #undef min #endif // _WIN32 #endif // _SC_MAX_H