Fixed potential conflict with macro max

git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@551 860be788-9bd5-4423-9f1e-828f051e677b
This commit is contained in:
mat007 2012-09-02 08:05:48 +00:00
parent 0841b2fd16
commit e38a3ee8ec

View file

@ -133,7 +133,7 @@ namespace detail
{
public:
explicit at_least( std::size_t min )
: between( min, std::numeric_limits< std::size_t >::max() )
: between( min, (std::numeric_limits< std::size_t >::max)() )
{}
private: