Changeset 37660 in webkit for trunk/JavaScriptCore/wtf/GOwnPtr.cpp
- Timestamp:
- Oct 17, 2008, 2:16:01 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/GOwnPtr.cpp
r37556 r37660 22 22 namespace WTF { 23 23 24 template <> void freeOwned Ptr<GError>(GError* ptr)24 template <> void freeOwnedGPtr<GError>(GError* ptr) 25 25 { 26 26 if (ptr) … … 28 28 } 29 29 30 template <> void freeOwned Ptr<GList>(GList* ptr)30 template <> void freeOwnedGPtr<GList>(GList* ptr) 31 31 { 32 32 g_list_free(ptr); 33 33 } 34 34 35 template <> void freeOwned Ptr<GCond>(GCond* ptr)35 template <> void freeOwnedGPtr<GCond>(GCond* ptr) 36 36 { 37 37 if (ptr) … … 39 39 } 40 40 41 template <> void freeOwned Ptr<GMutex>(GMutex* ptr)41 template <> void freeOwnedGPtr<GMutex>(GMutex* ptr) 42 42 { 43 43 if (ptr) … … 45 45 } 46 46 47 template <> void freeOwned Ptr<GPatternSpec>(GPatternSpec* ptr)47 template <> void freeOwnedGPtr<GPatternSpec>(GPatternSpec* ptr) 48 48 { 49 49 if (ptr) … … 51 51 } 52 52 53 template <> void freeOwned Ptr<GDir>(GDir* ptr)53 template <> void freeOwnedGPtr<GDir>(GDir* ptr) 54 54 { 55 55 if (ptr)
Note:
See TracChangeset
for help on using the changeset viewer.