summaryrefslogtreecommitdiff
path: root/src/misc
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-05-30 09:32:24 +0000
committerrubidium <rubidium@openttd.org>2008-05-30 09:32:24 +0000
commite81386476f09997485e7f707f3349685e2140a97 (patch)
tree30aff0d5e2babd8c02d945388b876743efa44a66 /src/misc
parent00ccb1dc33141e6c4bb5036bcf77b4e446ceb4fc (diff)
downloadopenttd-e81386476f09997485e7f707f3349685e2140a97.tar.xz
(svn r13342) -Fix: smallvec.h/sortlist_type.h didn't include everything they needed.
Diffstat (limited to 'src/misc')
-rw-r--r--src/misc/smallvec.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/misc/smallvec.h b/src/misc/smallvec.h
index 7f85cc96a..9fc212dbe 100644
--- a/src/misc/smallvec.h
+++ b/src/misc/smallvec.h
@@ -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;