From: khizmax Date: Sun, 23 Apr 2017 20:52:19 +0000 (+0300) Subject: Removed constexpr from node ctor X-Git-Tag: v2.3.0~61 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=99d92e974c16e496092276c643d03bcb2ee550eb;p=libcds.git Removed constexpr from node ctor --- diff --git a/cds/intrusive/skip_list_rcu.h b/cds/intrusive/skip_list_rcu.h index e5b87111..2e35c9af 100644 --- a/cds/intrusive/skip_list_rcu.h +++ b/cds/intrusive/skip_list_rcu.h @@ -71,7 +71,7 @@ namespace cds { namespace intrusive { public: /// Constructs a node of height 1 (a bottom-list node) - CDS_CONSTEXPR node() + node() : m_pNext( nullptr ) , m_pDelChain( nullptr ) , m_nHeight(1)