summaryrefslogtreecommitdiff
path: root/utils/SmartPointer.h
diff options
context:
space:
mode:
authorchatty1993-12-22 12:24:30 +0000
committerchatty1993-12-22 12:24:30 +0000
commit9ee441b8c64cbd39bdd79e9f55e8388390ea6e14 (patch)
treec6ed7926ad96372c861825ebd2db7318d9a6bfce /utils/SmartPointer.h
parent1c7635febcaa6fb0f1308c53d90fd36ea598372a (diff)
downloadivy-league-9ee441b8c64cbd39bdd79e9f55e8388390ea6e14.zip
ivy-league-9ee441b8c64cbd39bdd79e9f55e8388390ea6e14.tar.gz
ivy-league-9ee441b8c64cbd39bdd79e9f55e8388390ea6e14.tar.bz2
ivy-league-9ee441b8c64cbd39bdd79e9f55e8388390ea6e14.tar.xz
changed arg of operator new
Diffstat (limited to 'utils/SmartPointer.h')
-rw-r--r--utils/SmartPointer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/SmartPointer.h b/utils/SmartPointer.h
index 90d1180..5b79bf7 100644
--- a/utils/SmartPointer.h
+++ b/utils/SmartPointer.h
@@ -32,7 +32,7 @@ protected:
static int NextCreatedIsDynamic;
public:
- void* operator new (unsigned);
+ void* operator new (unsigned long);
inline void operator delete (void* that) { ::delete (that); }
CcuSmartData ();