about summary refs log tree commit diff
path: root/src/rt/rust_kernel.cpp
diff options
context:
space:
mode:
authorGraydon Hoare <graydon@mozilla.com>2012-03-28 13:49:39 -0700
committerGraydon Hoare <graydon@mozilla.com>2012-03-28 13:52:47 -0700
commitc141e7a068e3fbb1a5d24dcd000567b7731910bb (patch)
tree1760a7bc92475d235e623751c6ef493bcbbe7cad /src/rt/rust_kernel.cpp
parent211d41948a9f5bb4e6f322cb8639e01439e13abf (diff)
downloadrust-c141e7a068e3fbb1a5d24dcd000567b7731910bb.tar.gz
rust-c141e7a068e3fbb1a5d24dcd000567b7731910bb.zip
Fix some gcc-4.4-isms, should build now on 4.1+.
Diffstat (limited to 'src/rt/rust_kernel.cpp')
-rw-r--r--src/rt/rust_kernel.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rt/rust_kernel.cpp b/src/rt/rust_kernel.cpp
index 8e6baf99197..3b6ddbe4db2 100644
--- a/src/rt/rust_kernel.cpp
+++ b/src/rt/rust_kernel.cpp
@@ -3,11 +3,12 @@
 #define __STDC_LIMIT_MACROS 1
 #endif
 
-#include <vector>
 #include "rust_internal.h"
 #include "rust_util.h"
 #include "rust_scheduler.h"
 
+#include <vector>
+
 #define KLOG_(...)                              \
     KLOG(this, kern, __VA_ARGS__)
 #define KLOG_ERR_(field, ...)                   \