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

Unified Diff: runtime/vm/object.h

Issue 376653004: FIx bot redness because of compilation errors on Linux. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.h
===================================================================
--- runtime/vm/object.h (revision 38032)
+++ runtime/vm/object.h (working copy)
@@ -2436,8 +2436,8 @@
};
Iterator(const TokenStream& tokens,
- intptr_t token_pos,
- Iterator::StreamType stream_type = kNoNewlines);
+ intptr_t token_pos,
+ Iterator::StreamType stream_type = kNoNewlines);
void SetStream(const TokenStream& tokens, intptr_t token_pos);
bool IsValid() const;
@@ -3032,10 +3032,10 @@
// We would have a VisitPointers function here to traverse the
// pc descriptors table to visit objects if any in the table.
- class Iterator : public ValueObject {
+ class Iterator : ValueObject {
public:
explicit Iterator(const PcDescriptors& descriptors)
- : descriptors_(descriptors), current_ix_(0) {}
+ : ValueObject(), descriptors_(descriptors), current_ix_(0) {}
// For nested iterations, starting at element after.
explicit Iterator(const Iterator& iter)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698