summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-01-16 16:29:07 +0000
committerrubidium <rubidium@openttd.org>2009-01-16 16:29:07 +0000
commit7c51d9f429ec70b81b045eea102e0f1ba4dc0a54 (patch)
tree82d1b29ddfb935c3f7e4488eb0a84683887766ae
parent435a69da1e895c47dc7bdee7b427d0b0f54b4e9f (diff)
downloadopenttd-7c51d9f429ec70b81b045eea102e0f1ba4dc0a54.tar.xz
(svn r15112) -Fix (r15108): transform should include algorithm as that's where it's from. Furthermore not including it gives compile errors for some
-rw-r--r--src/fileio.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/fileio.cpp b/src/fileio.cpp
index 5940d021f..86e2f93b6 100644
--- a/src/fileio.cpp
+++ b/src/fileio.cpp
@@ -19,6 +19,7 @@
#include <unistd.h>
#endif
#include <sys/stat.h>
+#include <algorithm>
/*************************************************/
/* FILE IO ROUTINES ******************************/