]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/common/uobject.cpp
ICU-491.11.2.tar.gz
[apple/icu.git] / icuSources / common / uobject.cpp
index 515e943e10a42b9085e68210f7a3cbfa41a1e972..bf31c573ce27f9b5263423e83f2c0bd5df4093b5 100644 (file)
@@ -1,7 +1,7 @@
 /*
 ******************************************************************************
 *
 /*
 ******************************************************************************
 *
-*   Copyright (C) 2002-2008, International Business Machines
+*   Copyright (C) 2002-2011, International Business Machines
 *   Corporation and others.  All Rights Reserved.
 *
 ******************************************************************************
 *   Corporation and others.  All Rights Reserved.
 *
 ******************************************************************************
@@ -111,4 +111,9 @@ UObject::~UObject() {}
 
 U_NAMESPACE_END
 
 
 U_NAMESPACE_END
 
+U_NAMESPACE_USE
 
 
+U_CAPI void U_EXPORT2
+uprv_deleteUObject(void *obj) {
+    delete reinterpret_cast<UObject *>(obj);
+}