]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Summary: Bugfix min redeclaration.
authorrobertc <>
Sat, 26 Apr 2003 03:45:29 +0000 (03:45 +0000)
committerrobertc <>
Sat, 26 Apr 2003 03:45:29 +0000 (03:45 +0000)
Keywords:

#ifndef min was in the wrong place.

src/squid.h

index cb668974ff94f9c466ac23018b4f1e80e29ff4b1..ef64d529e565726639e5927cddf8b0b5f705bcd1 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: squid.h,v 1.234 2003/04/24 06:35:09 hno Exp $
+ * $Id: squid.h,v 1.235 2003/04/25 21:45:29 robertc Exp $
  *
  * AUTHOR: Duane Wessels
  *
@@ -366,9 +366,10 @@ extern "C"
 #include "snprintf.h"
 #endif
 
+#ifndef min
+
 template<class A>
 inline A const &
-#ifndef min
 min(A const & lhs, A const & rhs)
 {
     if (rhs < lhs)