diff options
author | Mathieu Chartier <mathieuc@google.com> | 2013-08-14 16:14:24 -0700 |
---|---|---|
committer | Mathieu Chartier <mathieuc@google.com> | 2013-08-16 13:15:37 -0700 |
commit | 02e25119b15a6f619f17db99f5d05124a5807ff3 (patch) | |
tree | 7be4cbbf28033e5ee0621565b410fe5d8170a8fb /compiler/utils/assembler.h | |
parent | 7d70a7932f0ba09eb01a93caab060aef1403d4e6 (diff) | |
download | android_art-02e25119b15a6f619f17db99f5d05124a5807ff3.tar.gz android_art-02e25119b15a6f619f17db99f5d05124a5807ff3.tar.bz2 android_art-02e25119b15a6f619f17db99f5d05124a5807ff3.zip |
Fix up TODO: c++0x, update cpplint.
Needed to update cpplint to handle const auto.
Fixed a few cpplint errors that were being missed before.
Replaced most of the TODO c++0x with ranged based loops. Loops which
do not have a descriptive container name have a concrete type instead
of auto.
Change-Id: Id7cc0f27030f56057c544e94277300b3f298c9c5
Diffstat (limited to 'compiler/utils/assembler.h')
-rw-r--r-- | compiler/utils/assembler.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/utils/assembler.h b/compiler/utils/assembler.h index 9d79002625..c9be4edbf8 100644 --- a/compiler/utils/assembler.h +++ b/compiler/utils/assembler.h @@ -137,6 +137,7 @@ class SlowPath { // Next in linked list of slow paths SlowPath *next_; + private: friend class AssemblerBuffer; DISALLOW_COPY_AND_ASSIGN(SlowPath); }; |