Fix #include order in snapshot-external.cc
authorJacob.Bramley@arm.com <Jacob.Bramley@arm.com@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Mon, 23 Jun 2014 17:16:07 +0000 (17:16 +0000)
committerJacob.Bramley@arm.com <Jacob.Bramley@arm.com@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Mon, 23 Jun 2014 17:16:07 +0000 (17:16 +0000)
This corrects a linter complaint.

BUG=
R=mstarzinger@chromium.org, vogelheim@chromium.org

Review URL: https://codereview.chromium.org/351643002

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@21947 ce2b1a6d-e550-0410-aec6-3dcde31c8c00

src/snapshot-external.cc

index 5bfadc2..0cc15d8 100644 (file)
@@ -6,9 +6,9 @@
 
 #include "src/snapshot.h"
 
-#include "src/v8.h"  // for V8::Initialize
 #include "src/serialize.h"
 #include "src/snapshot-source-sink.h"
+#include "src/v8.h"  // for V8::Initialize
 
 namespace v8 {
 namespace internal {