From f6696e585c9f1fa91d2dba40ae88753a0ace675e Mon Sep 17 00:00:00 2001 From: khizmax Date: Sun, 16 Apr 2017 21:46:25 +0300 Subject: [PATCH] Remooved constespr from ctor --- cds/intrusive/optimistic_queue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cds/intrusive/optimistic_queue.h b/cds/intrusive/optimistic_queue.h index 3d00eef3..4f3140cf 100644 --- a/cds/intrusive/optimistic_queue.h +++ b/cds/intrusive/optimistic_queue.h @@ -60,7 +60,7 @@ namespace cds { namespace intrusive { atomic_node_ptr m_pNext ; ///< Pointer to next node atomic_node_ptr m_pPrev ; ///< Pointer to previous node - CDS_CONSTEXPR node() CDS_NOEXCEPT + node() CDS_NOEXCEPT { m_pNext.store( nullptr, atomics::memory_order_relaxed ); m_pPrev.store( nullptr, atomics::memory_order_release ); -- 2.34.1