summaryrefslogtreecommitdiff
path: root/utils/SmartPointer.cc
diff options
context:
space:
mode:
authorchatty1995-03-13 15:03:50 +0000
committerchatty1995-03-13 15:03:50 +0000
commit695304d5aa8235993b35f933dd44339e68b211e4 (patch)
treeb61418a94e522e373b3fb905cc2519b788be3179 /utils/SmartPointer.cc
parente63a37896804d4c483512f460931793a5188ee1c (diff)
downloadivy-league-695304d5aa8235993b35f933dd44339e68b211e4.zip
ivy-league-695304d5aa8235993b35f933dd44339e68b211e4.tar.gz
ivy-league-695304d5aa8235993b35f933dd44339e68b211e4.tar.bz2
ivy-league-695304d5aa8235993b35f933dd44339e68b211e4.tar.xz
unsigned long -> size_t (finally!)
Diffstat (limited to 'utils/SmartPointer.cc')
-rw-r--r--utils/SmartPointer.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/SmartPointer.cc b/utils/SmartPointer.cc
index 2ff5539..50343df 100644
--- a/utils/SmartPointer.cc
+++ b/utils/SmartPointer.cc
@@ -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)
*
@@ -60,7 +60,7 @@ works well only if the constructor is called right after operator new, which is
always the case...
!*/
void*
-CcuSmartData :: operator new (unsigned long size)
+CcuSmartData :: operator new (size_t size)
{
#ifdef OLD
NextCreatedIsDynamic = 1;