Removed redundant comment
authorkhizmax <libcds.dev@gmail.com>
Sun, 16 Apr 2017 16:24:45 +0000 (19:24 +0300)
committerkhizmax <libcds.dev@gmail.com>
Sun, 16 Apr 2017 16:24:45 +0000 (19:24 +0300)
cds/container/fcstack.h

index 65994be7eeeba487fdb45d5ff71d5c1280394d9b..8641ff7f7fcf3c6a86767f646aa380745edd8d50 100644 (file)
@@ -334,9 +334,6 @@ namespace cds { namespace container {
         /// Batch-processing flat combining
         void fc_process( typename fc_kernel::iterator itBegin, typename fc_kernel::iterator itEnd )
         {
-            // this function is called under FC mutex, so switch TSan off
-            //CDS_TSAN_ANNOTATE_IGNORE_RW_BEGIN;
-
             typedef typename fc_kernel::iterator fc_iterator;
             for ( fc_iterator it = itBegin, itPrev = itEnd; it != itEnd; ++it ) {
                 switch ( it->op( atomics::memory_order_acquire )) {
@@ -350,7 +347,6 @@ namespace cds { namespace container {
                     break;
                 }
             }
-            //CDS_TSAN_ANNOTATE_IGNORE_RW_END;
         }
         //@endcond