msvc support
[m6w6/libmemcached] / src / bin / common / random.hpp
index eab844f1d3c449e6289cb273088d55c64d705936..35be5ad946a7f9833680151ace6c9b8d954025a7 100644 (file)
@@ -17,6 +17,7 @@
 
 #include "time.hpp"
 #include <random>
+#undef max
 
 class random64 {
 public:
@@ -27,8 +28,8 @@ public:
   , dst{}
   {}
 
-  typ operator()(typ min = 0, typ max = std::numeric_limits<typ>::max()) {
-    return (dst(gen) % (max - min)) + min;
+  typ operator()(typ min_ = 0, typ max_ = std::numeric_limits<typ>::max()) {
+    return (dst(gen) % (max_ - min_)) + min_;
   }
 
   void fill(char *buf, size_t len,