Reviewers: Vitaly, Dmitry Titov, Description: Initializers order should match that of the field declarations.
Please review this at http://codereview.chromium.org/5161001/ SVN Base: http://v8.googlecode.com/svn/branches/experimental/isolates/ Affected files: M src/platform-macos.cc Index: src/platform-macos.cc =================================================================== --- src/platform-macos.cc (revision 5834) +++ src/platform-macos.cc (working copy) @@ -644,8 +644,8 @@ Sampler::Sampler(Isolate* isolate, int interval, bool profiling) : isolate_(isolate), interval_(interval), + synchronous_(profiling), profiling_(profiling), - synchronous_(profiling), active_(false) { data_ = new PlatformData(this); } -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
