diff options
| author | Graydon Hoare <graydon@mozilla.com> | 2012-03-28 13:49:39 -0700 |
|---|---|---|
| committer | Graydon Hoare <graydon@mozilla.com> | 2012-03-28 13:52:47 -0700 |
| commit | c141e7a068e3fbb1a5d24dcd000567b7731910bb (patch) | |
| tree | 1760a7bc92475d235e623751c6ef493bcbbe7cad /src/rt/rust_kernel.cpp | |
| parent | 211d41948a9f5bb4e6f322cb8639e01439e13abf (diff) | |
| download | rust-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.cpp | 3 |
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, ...) \ |
