diff options
Diffstat (limited to 'compiler/utils/growable_array.h')
-rw-r--r-- | compiler/utils/growable_array.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/utils/growable_array.h b/compiler/utils/growable_array.h index 7455818..3215102 100644 --- a/compiler/utils/growable_array.h +++ b/compiler/utils/growable_array.h @@ -129,7 +129,7 @@ class GrowableArray : public ArenaObject<kArenaAllocGrowableArray> { } // We should either have found the element, or it was the last (unscanned) element. // if element is not in array, don't touch anything - if(!found && (element != elem_list_[num_used_ - 1])) + if (!found && (element != elem_list_[num_used_ - 1])) return; num_used_--; } |