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

Unified Diff: runtime/vm/object.h

Issue 393083002: Fix build (link error reproducible on linux with GYP_DEFINES=dart_debug_optimization_level=0). (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 | runtime/vm/raw_object.h » ('j') | runtime/vm/raw_object.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.h
===================================================================
--- runtime/vm/object.h (revision 38250)
+++ runtime/vm/object.h (working copy)
@@ -3013,7 +3013,7 @@
}
static const intptr_t kMaxBytesPerElement =
- RawPcDescriptors::kFullRecSize;
+ sizeof(RawPcDescriptors::PcDescriptorRec);
siva 2014/07/16 00:41:27 Does this need to be sizeof(....) can it be RawPcD
srdjan 2014/07/16 16:17:17 It gives error: In-class initializer for static da
static const intptr_t kMaxElements = kSmiMax / kMaxBytesPerElement;
static intptr_t InstanceSize() {
« no previous file with comments | « no previous file | runtime/vm/raw_object.h » ('j') | runtime/vm/raw_object.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698