summaryrefslogtreecommitdiff
path: root/compiler/dex/backend.h
diff options
context:
space:
mode:
author Brian Carlstrom <bdc@google.com> 2013-07-17 23:40:20 -0700
committer Brian Carlstrom <bdc@google.com> 2013-07-18 00:12:43 -0700
commit0cd7ec2dcd8d7ba30bf3ca420b40dac52849876c (patch)
tree525a0f99f9381156367c988133b5d51d5dfef6f7 /compiler/dex/backend.h
parentf69863b3039fc621ff4250e262d2a024d5e79ec8 (diff)
Fix cpplint whitespace/blank_line issues
Change-Id: Ice937e95e23dd622c17054551d4ae4cebd0ef8a2
Diffstat (limited to 'compiler/dex/backend.h')
-rw-r--r--compiler/dex/backend.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/dex/backend.h b/compiler/dex/backend.h
index 7fa8e9992a..acfec42352 100644
--- a/compiler/dex/backend.h
+++ b/compiler/dex/backend.h
@@ -23,7 +23,6 @@
namespace art {
class Backend {
-
public:
virtual ~Backend() {};
virtual void Materialize() = 0;
@@ -32,7 +31,6 @@ class Backend {
protected:
explicit Backend(ArenaAllocator* arena) : arena_(arena) {};
ArenaAllocator* const arena_;
-
}; // Class Backend
} // namespace art