Removed constexpr from node ctor
authorkhizmax <libcds.dev@gmail.com>
Sun, 23 Apr 2017 20:52:19 +0000 (23:52 +0300)
committerkhizmax <libcds.dev@gmail.com>
Sun, 23 Apr 2017 20:52:19 +0000 (23:52 +0300)
cds/intrusive/skip_list_rcu.h

index e5b871116875895b1f8b5080b749db61a5aef842..2e35c9afc36ea1e62c5627692a69b6ab84e3756f 100644 (file)
@@ -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)