@@ -232,6 +232,7 @@ Status Table::MutateRow(google::bigtable::v2::MutateRowRequest const& request) {
232232 request.mutations ());
233233}
234234
235+ // NOLINTBEGIN(readability-function-cognitive-complexity)
235236Status Table::DoMutationsWithPossibleRollback (
236237 std::string const & row_key,
237238 google::protobuf::RepeatedPtrField<google::bigtable::v2::Mutation> const &
@@ -300,6 +301,7 @@ Status Table::DoMutationsWithPossibleRollback(
300301
301302 return Status ();
302303}
304+ // NOLINTEND(readability-function-cognitive-complexity)
303305
304306StatusOr<CellStream> Table::CreateCellStream (
305307 std::shared_ptr<StringRangeSet> range_set,
@@ -556,7 +558,6 @@ Table::ReadModifyWriteRow(
556558 return std::move (maybe_response.value ());
557559}
558560
559-
560561// NOLINTBEGIN(readability-convert-member-functions-to-static)
561562Status RowTransaction::AddToCell (
562563 ::google::bigtable::v2::Mutation_AddToCell const & add_to_cell) {
@@ -726,7 +727,8 @@ void ProcessReadModifyWriteResult(
726727 // Record the cell in our local mini table here to use in
727728 // assembling a row of changed cells for return.
728729 tmp_families[rule.family_name ()].SetCell (row_key, rule.column_qualifier (),
729- result.timestamp , std::move (result.value ));
730+ result.timestamp ,
731+ std::move (result.value ));
730732}
731733
732734// NOLINTBEGIN(readability-function-cognitive-complexity)
0 commit comments