(svn r13342) -Fix: smallvec.h/sortlist_type.h didn't include everything they needed.
authorrubidium
Fri, 30 May 2008 09:32:24 +0000
changeset 9427 af652de004a0
parent 9426 a77c8a4abcf5
child 9428 1ba05b499957
(svn r13342) -Fix: smallvec.h/sortlist_type.h didn't include everything they needed.
src/misc/smallvec.h
src/sortlist_type.h
--- a/src/misc/smallvec.h	Fri May 30 09:23:05 2008 +0000
+++ b/src/misc/smallvec.h	Fri May 30 09:32:24 2008 +0000
@@ -5,6 +5,9 @@
 #ifndef SMALLVEC_H
 #define SMALLVEC_H
 
+#include "../core/alloc_func.hpp"
+#include "../core/math_func.hpp"
+
 template <typename T, uint S>
 struct SmallVector {
 	T *data;
--- a/src/sortlist_type.h	Fri May 30 09:23:05 2008 +0000
+++ b/src/sortlist_type.h	Fri May 30 09:32:24 2008 +0000
@@ -5,6 +5,8 @@
 #ifndef SORTLIST_TYPE_H
 #define SORTLIST_TYPE_H
 
+#include "core/enum_type.hpp"
+#include "core/bitmath_func.hpp"
 #include "misc/smallvec.h"
 #include "date_type.h"