undef all min/max macros, thx to Shen Lei

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@616 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
syntheticpp 2006-03-27 16:09:57 +00:00
parent 72155fad9d
commit 5d12286439

View file

@ -15,6 +15,14 @@
#include <loki/OrderedStatic.h>
#include <limits>
#ifdef min
#undef min
#endif
#ifdef max
#undef max
#endif
namespace Loki
{
namespace Private
@ -71,6 +79,9 @@ namespace Loki
}//namespace Loki
// $Log$
// Revision 1.7 2006/03/27 16:09:57 syntheticpp
// undef all min/max macros, thx to Shen Lei
//
// Revision 1.6 2006/01/18 17:21:31 lfittl
// - Compile library with -Weffc++ and -pedantic (gcc)
// - Fix most issues raised by using -Weffc++ (initialization lists)