Reviewers: Søren Gjesse, Description: Add a couple of missing includes.
Please review this at http://codereview.chromium.org/5899001/ SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/counters.h M src/v8-counters.h Index: src/counters.h =================================================================== --- src/counters.h (revision 6026) +++ src/counters.h (working copy) @@ -28,6 +28,9 @@ #ifndef V8_COUNTERS_H_ #define V8_COUNTERS_H_ +#include "../include/v8.h" +#include "allocation.h" + namespace v8 { namespace internal { Index: src/v8-counters.h =================================================================== --- src/v8-counters.h (revision 6026) +++ src/v8-counters.h (working copy) @@ -28,7 +28,9 @@ #ifndef V8_V8_COUNTERS_H_ #define V8_V8_COUNTERS_H_ +#include "allocation.h" #include "counters.h" +#include "v8globals.h" namespace v8 { namespace internal { -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
