From e38a3ee8ecbf24a579afa4046267816e09ac3c44 Mon Sep 17 00:00:00 2001 From: mat007 Date: Sun, 2 Sep 2012 08:05:48 +0000 Subject: [PATCH] Fixed potential conflict with macro max git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@551 860be788-9bd5-4423-9f1e-828f051e677b --- turtle/detail/invocation.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/turtle/detail/invocation.hpp b/turtle/detail/invocation.hpp index ec3a061..e9ec6b3 100644 --- a/turtle/detail/invocation.hpp +++ b/turtle/detail/invocation.hpp @@ -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: