File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ BranchCoverage::NodeCoverageStats BranchCoverageImpl::StatsForNode(
146146 /* boolean_false_count=*/ 0 ,
147147 };
148148
149- absl::MutexLock lock (& coverage_nodes_mu_);
149+ absl::MutexLock lock (coverage_nodes_mu_);
150150 auto it = coverage_nodes_.find (expr_id);
151151 if (it != coverage_nodes_.end ()) {
152152 const CoverageNode& coverage_node = it->second ;
@@ -201,7 +201,7 @@ void BranchCoverageImpl::Init() ABSL_NO_THREAD_SAFETY_ANALYSIS {
201201}
202202
203203void BranchCoverageImpl::RecordImpl (int64_t expr_id, const CelValue& value) {
204- absl::MutexLock lock (& coverage_nodes_mu_);
204+ absl::MutexLock lock (coverage_nodes_mu_);
205205 auto it = coverage_nodes_.find (expr_id);
206206 if (it == coverage_nodes_.end ()) {
207207 unexpected_expr_ids_.insert (expr_id);
You can’t perform that action at this time.
0 commit comments