Index: libcfa/src/containers/stackLockFree.hfa
===================================================================
--- libcfa/src/containers/stackLockFree.hfa	(revision e8577433c9491c7144a17a047c23afb9ea4cc772)
+++ libcfa/src/containers/stackLockFree.hfa	(revision 6f36dde5738ff3ea80437b7ebeab3b8a3f1f4a9d)
@@ -9,6 +9,6 @@
 // Created On       : Wed May 13 20:58:58 2020
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Sun Jun 14 13:25:09 2020
-// Update Count     : 64
+// Last Modified On : Wed Jan 20 20:40:03 2021
+// Update Count     : 67
 //
 
@@ -42,5 +42,5 @@
 
 		void push( StackLF(T) & this, T & n ) with(this) {
-			*( &n )`next = stack;					// atomic assignment unnecessary, or use CAA
+			*( &n )`next = stack;						// atomic assignment unnecessary, or use CAA
 			for () {									// busy wait
 			  if ( __atomic_compare_exchange_n( &stack.atom, &( &n )`next->atom, (Link(T))@{ {&n, ( &n )`next->count + 1} }.atom, false, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST ) ) break; // attempt to update top node
@@ -65,5 +65,5 @@
 				}
 				if( next == 0p ) return false;
-				link = (next)`next;
+				link = ( next )`next;
 			}
 		}
