From 695304d5aa8235993b35f933dd44339e68b211e4 Mon Sep 17 00:00:00 2001 From: chatty Date: Mon, 13 Mar 1995 15:03:50 +0000 Subject: unsigned long -> size_t (finally!) --- utils/SmartPointer.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'utils/SmartPointer.h') diff --git a/utils/SmartPointer.h b/utils/SmartPointer.h index 37c78ee..1939327 100644 --- a/utils/SmartPointer.h +++ b/utils/SmartPointer.h @@ -3,7 +3,7 @@ * * by Stephane Chatty * - * Copyright 1990, 1991, 1992 + * Copyright 1990-1995 * Laboratoire de Recherche en Informatique (LRI) * Centre d'Etudes de la Navigation Aerienne (CENA) * @@ -21,6 +21,8 @@ #endif #include "cplus_bugs.h" +#include + class CcuList; class CcuSmartData { @@ -40,7 +42,7 @@ static CcuList* LastDynamics; #endif public: - void* operator new (unsigned long); + void* operator new (size_t); inline void operator delete (void* that) { ::delete (that); } CcuSmartData (); -- cgit v1.1