Commit 610b510f authored by mmaly@chromium.org's avatar mmaly@chromium.org

Fix xcode build warning in shell.cc

(out of order initialization).

BUG=
TEST=

Review URL: http://codereview.chromium.org/6772021

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@7419 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 01748149
......@@ -157,7 +157,7 @@ class SourceGroup {
class IsolateThread : public v8::internal::Thread {
public:
explicit IsolateThread(SourceGroup* group)
: group_(group), v8::internal::Thread(NULL, GetThreadOptions()) {}
: v8::internal::Thread(NULL, GetThreadOptions()), group_(group) {}
virtual void Run() {
group_->ExecuteInThread();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment