]> git.saurik.com Git - apple/security.git/blobdiff - OSX/libsecurity_utilities/lib/cfclass.cpp
Security-59754.80.3.tar.gz
[apple/security.git] / OSX / libsecurity_utilities / lib / cfclass.cpp
index 530edb4b83632e50073126e177a2ccc352d3a9ba..6beabd295a1794d316cdba6b5310ea04adf2fd59 100644 (file)
@@ -89,7 +89,7 @@ CFClass::cleanupObject(intptr_t op, CFTypeRef cf, bool &zap)
 }
 
 uint32_t
 }
 
 uint32_t
-CFClass::refCountForType(intptr_t op, CFTypeRef cf) throw()
+CFClass::refCountForType(intptr_t op, CFTypeRef cf) _NOEXCEPT
 {
     uint32_t result = 0;
     bool zap = false;
 {
     uint32_t result = 0;
     bool zap = false;
@@ -127,7 +127,7 @@ CFClass::refCountForType(intptr_t op, CFTypeRef cf) throw()
 
 
 void
 
 
 void
-CFClass::finalizeType(CFTypeRef cf) throw()
+CFClass::finalizeType(CFTypeRef cf) _NOEXCEPT
 {
     /*
         We need to control the lifetime of the object.  This means
 {
     /*
         We need to control the lifetime of the object.  This means
@@ -168,7 +168,7 @@ CFClass::finalizeType(CFTypeRef cf) throw()
 }
 
 Boolean
 }
 
 Boolean
-CFClass::equalType(CFTypeRef cf1, CFTypeRef cf2) throw()
+CFClass::equalType(CFTypeRef cf1, CFTypeRef cf2) _NOEXCEPT
 {
        // CF checks for pointer equality and ensures type equality already
        try {
 {
        // CF checks for pointer equality and ensures type equality already
        try {
@@ -179,7 +179,7 @@ CFClass::equalType(CFTypeRef cf1, CFTypeRef cf2) throw()
 }
 
 CFHashCode
 }
 
 CFHashCode
-CFClass::hashType(CFTypeRef cf) throw()
+CFClass::hashType(CFTypeRef cf) _NOEXCEPT
 {
        try {
                return SecCFObject::optional(cf)->hash();
 {
        try {
                return SecCFObject::optional(cf)->hash();
@@ -189,7 +189,7 @@ CFClass::hashType(CFTypeRef cf) throw()
 }
 
 CFStringRef
 }
 
 CFStringRef
-CFClass::copyFormattingDescType(CFTypeRef cf, CFDictionaryRef dict) throw()
+CFClass::copyFormattingDescType(CFTypeRef cf, CFDictionaryRef dict) _NOEXCEPT
 {
        try {
                return SecCFObject::optional(cf)->copyFormattingDesc(dict);
 {
        try {
                return SecCFObject::optional(cf)->copyFormattingDesc(dict);
@@ -199,7 +199,7 @@ CFClass::copyFormattingDescType(CFTypeRef cf, CFDictionaryRef dict) throw()
 }
 
 CFStringRef
 }
 
 CFStringRef
-CFClass::copyDebugDescType(CFTypeRef cf) throw()
+CFClass::copyDebugDescType(CFTypeRef cf) _NOEXCEPT
 {
        try {
                return SecCFObject::optional(cf)->copyDebugDesc();
 {
        try {
                return SecCFObject::optional(cf)->copyDebugDesc();