Fixed formatting
authorkhizmax <libcds.dev@gmail.com>
Sat, 29 Oct 2016 14:28:18 +0000 (17:28 +0300)
committerkhizmax <libcds.dev@gmail.com>
Sat, 29 Oct 2016 14:28:18 +0000 (17:28 +0300)
cds/intrusive/details/split_list_base.h

index b6c51cc7a8e2a1e8441aabd7216becc3829bc983..44b7d349c729fcc982eab01b334de46fb98ff576 100644 (file)
@@ -106,6 +106,7 @@ namespace cds { namespace intrusive {
         };
 
         //@cond
+        // for IterableList
         template <>
         struct node<void>: public hash_node
         {
@@ -1040,7 +1041,10 @@ namespace cds { namespace intrusive {
                     aux_node()
                     {
                         typedef typename native_ordered_list::node_type list_node_type;
-                        list_node_type::data.store( typename list_node_type::marked_data_ptr( static_cast<value_type*>( static_cast<hash_node *>( this ))), atomics::memory_order_release );
+                        list_node_type::data.store( typename list_node_type::marked_data_ptr(
+                            static_cast<value_type*>( static_cast<hash_node *>( this ))),
+                            atomics::memory_order_release
+                        );
                     }
                 };