From: khizmax Date: Sun, 16 Apr 2017 16:24:45 +0000 (+0300) Subject: Removed redundant comment X-Git-Tag: v2.3.0~72 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=7670a24f6fb3df26a9edf7bd1be9d2ee9a1382f6;p=libcds.git Removed redundant comment --- diff --git a/cds/container/fcstack.h b/cds/container/fcstack.h index 65994be7..8641ff7f 100644 --- a/cds/container/fcstack.h +++ b/cds/container/fcstack.h @@ -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