remove CDS_CONSTEXPR_CONST macro
[libcds.git] / cds / intrusive / fcqueue.h
index 366535d4de9d3a1f6d4407492d09bb854faf0c1e..b0bef10717d967b391f96c52e326e00b1ae26065 100644 (file)
@@ -47,7 +47,7 @@ namespace cds { namespace intrusive {
         {
             typedef cds::intrusive::opt::v::empty_disposer  disposer ; ///< Disposer to erase removed elements. Used only in \p FCQueue::clear() function
             typedef empty_stat      stat;   ///< Internal statistics
-            static CDS_CONSTEXPR_CONST bool enable_elimination = false; ///< Enable \ref cds_elimination_description "elimination"
+            static CDS_CONSTEXPR const bool enable_elimination = false; ///< Enable \ref cds_elimination_description "elimination"
         };
 
         /// Metafunction converting option list to traits
@@ -108,7 +108,7 @@ namespace cds { namespace intrusive {
 
         typedef typename traits::disposer   disposer;   ///< The disposer functor. The disposer is used only in \ref clear() function
         typedef typename traits::stat       stat;   ///< Internal statistics type
-        static CDS_CONSTEXPR_CONST bool c_bEliminationEnabled = traits::enable_elimination; ///< \p true if elimination is enabled
+        static CDS_CONSTEXPR const bool c_bEliminationEnabled = traits::enable_elimination; ///< \p true if elimination is enabled
 
     protected:
         //@cond