diff options
author | rubidium <rubidium@openttd.org> | 2009-01-16 16:29:07 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-01-16 16:29:07 +0000 |
commit | c333790dd8b3de60c923ce89bb44762c9fb677fa (patch) | |
tree | 82d1b29ddfb935c3f7e4488eb0a84683887766ae /src | |
parent | 2adcaa576fd0e69205fdb96b453b80eed33c2cbb (diff) | |
download | openttd-c333790dd8b3de60c923ce89bb44762c9fb677fa.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
Diffstat (limited to 'src')
-rw-r--r-- | src/fileio.cpp | 1 |
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 ******************************/ |