From d4e2aa0513d12f035b87beb9a14262e61e2ac278 Mon Sep 17 00:00:00 2001 From: khizmax Date: Thu, 10 Dec 2015 22:55:56 +0300 Subject: [PATCH] Fixed noexcept spec --- cds/sync/spinlock.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cds/sync/spinlock.h b/cds/sync/spinlock.h index 794271a8..661e2386 100644 --- a/cds/sync/spinlock.h +++ b/cds/sync/spinlock.h @@ -255,7 +255,7 @@ namespace cds { {} /// Construct object for specified state - explicit reentrant_spin_lock( bool bLocked ) CDS_NOEXCEPT_( noexcept(lock())) + explicit reentrant_spin_lock( bool bLocked ) : m_spin(0) , m_OwnerId( OS::c_NullThreadId ) { -- 2.34.1