Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(532)

Unified Diff: runtime/vm/growable_array.h

Issue 2974233002: VM: Re-format to use at most one newline between functions (Closed)
Patch Set: Rebase and merge Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/globals.h ('k') | runtime/vm/growable_array_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/growable_array.h
diff --git a/runtime/vm/growable_array.h b/runtime/vm/growable_array.h
index b8e27a30f77699b0597ee4804d2c8427f4dbd9d3..4788bffa62415c445c5b3c34794a8f2789a54f1d 100644
--- a/runtime/vm/growable_array.h
+++ b/runtime/vm/growable_array.h
@@ -31,7 +31,6 @@ class GrowableArray : public BaseGrowableArray<T, ValueObject, Zone> {
ASSERT_NOTNULL(Thread::Current()->zone())) {}
};
-
template <typename T>
class ZoneGrowableArray : public BaseGrowableArray<T, ZoneAllocated, Zone> {
public:
@@ -47,7 +46,6 @@ class ZoneGrowableArray : public BaseGrowableArray<T, ZoneAllocated, Zone> {
ASSERT_NOTNULL(Thread::Current()->zone())) {}
};
-
// T must be a Handle type.
template <typename T, typename B>
class BaseGrowableHandlePtrArray : public B {
@@ -77,7 +75,6 @@ class BaseGrowableHandlePtrArray : public B {
DISALLOW_COPY_AND_ASSIGN(BaseGrowableHandlePtrArray);
};
-
template <typename T>
class GrowableHandlePtrArray
: public BaseGrowableHandlePtrArray<T, ValueObject> {
@@ -86,7 +83,6 @@ class GrowableHandlePtrArray
: BaseGrowableHandlePtrArray<T, ValueObject>(zone, initial_capacity) {}
};
-
template <typename T>
class ZoneGrowableHandlePtrArray
: public BaseGrowableHandlePtrArray<T, ZoneAllocated> {
« no previous file with comments | « runtime/vm/globals.h ('k') | runtime/vm/growable_array_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698