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

Unified Diff: runtime/vm/bitmap.h

Issue 10835034: Fix an off-by-one error in the stack frame iteration. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Renaming per review comments. Created 8 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 | runtime/vm/bitmap.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/bitmap.h
diff --git a/runtime/vm/bitmap.h b/runtime/vm/bitmap.h
index 442445e67b3bef5f5a116f0468a3a70667253f95..56aeb7ff5c6ccc621f71338f4256f42aed50136a 100644
--- a/runtime/vm/bitmap.h
+++ b/runtime/vm/bitmap.h
@@ -42,7 +42,7 @@ class BitmapBuilder : public ZoneAllocated {
void SetRange(intptr_t min, intptr_t max, bool value);
// Replicates the bit map setting of the passed in Stackmap object.
- void SetBits(const Stackmap& bitmap);
+ void SetBits(const Stackmap& stackmap);
private:
static const intptr_t kInitialSizeInBytes = 16;
« no previous file with comments | « no previous file | runtime/vm/bitmap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698