]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/NullDelayId.h
Cleanup: zap CVS Id tags
[thirdparty/squid.git] / src / NullDelayId.h
index 33a177b0014f78d615c54561613753862d4b2849..290e7d29164676415b1b083797dcdafe053370d5 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: NullDelayId.h,v 1.2 2003/02/21 22:50:06 robertc Exp $
+ * $Id$
  *
  * DEBUG: section 77    Delay Pools
  * AUTHOR: Robert Collins <robertc@squid-cache.org>
  *  it under the terms of the GNU General Public License as published by
  *  the Free Software Foundation; either version 2 of the License, or
  *  (at your option) any later version.
- *  
+ *
  *  This program is distributed in the hope that it will be useful,
  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  *  GNU General Public License for more details.
- *  
+ *
  *  You should have received a copy of the GNU General Public License
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
@@ -52,11 +52,9 @@ class NullDelayId : public DelayIdComposite
 public:
     void *operator new(size_t);
     void operator delete (void *);
-    virtual void deleteSelf() const;
-    virtual int bytesWanted (int min, int max) const {return XMAX(min,max);}
-
-    virtual void bytesIn(int qty) {}}
+    virtual int bytesWanted (int minimum, int maximum) const {return max(minimum,maximum);}
 
-;
+    virtual void bytesIn(int qty) {}
+};
 #endif
 #endif /* NULLDELAYID_H */