(svn r13342) -Fix: smallvec.h/sortlist_type.h didn't include everything they needed.
authorrubidium
Fri, 30 May 2008 09:32:24 +0000
changeset 10791 0f3e94733e65
parent 10790 9f507561b6a5
child 10792 95b6eb9fcc9e
(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"