Skip to content

Commit 411bd62

Browse files
aamcommit-bot@chromium.org
authored andcommitted
[isolate] Fix delete () call to operator delete form.
This is follow-up to 9e636b5. Change-Id: Ia167e9faea9b3085fdc1076666d05360646153e9 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/121942 Reviewed-by: Martin Kustermann <kustermann@google.com> Commit-Queue: Alexander Aprelev <aam@google.com>
1 parent 00dc546 commit 411bd62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runtime/vm/isolate.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ void IsolateGroup::Cleanup() {
417417
delete isolate_groups_rwlock_;
418418
isolate_groups_rwlock_ = nullptr;
419419
ASSERT(isolate_groups_->IsEmpty());
420-
delete (isolate_groups_);
420+
delete isolate_groups_;
421421
isolate_groups_ = nullptr;
422422
}
423423

0 commit comments

Comments
 (0)