Fix CDS_NOEXCEPT
authorkhizmax <libcds.dev@gmail.com>
Mon, 20 Oct 2014 06:35:26 +0000 (10:35 +0400)
committerkhizmax <libcds.dev@gmail.com>
Mon, 20 Oct 2014 06:35:26 +0000 (10:35 +0400)
cds/lock/spinlock.h

index 139a2bd3d3989023825db6a14706e16955dc70c3..b5bf19eddbd571ea102b8c5507c1b07b466db1c7 100644 (file)
@@ -126,7 +126,7 @@ namespace cds {
                 Returns \p true if locking is succeeded
                 otherwise (if the spin is already locked) returns \p false
             */
-            bool try_lock( unsigned int nTryCount ) CDS_NOEXCEPT( noexcept( backoff_strategy()() ) )
+            bool try_lock( unsigned int nTryCount ) CDS_NOEXCEPT_( noexcept( backoff_strategy()() ) )
             {
                 backoff_strategy backoff;
                 while ( nTryCount-- ) {
@@ -138,7 +138,7 @@ namespace cds {
             }
 
             /// Lock the spin-lock. Waits infinitely while spin-lock is locked. Debug version: deadlock may be detected
-            void lock() CDS_NOEXCEPT(noexcept( backoff_strategy()() ))
+            void lock() CDS_NOEXCEPT_(noexcept( backoff_strategy()() ))
             {
                 backoff_strategy backoff;