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 | 7c51d9f429ec70b81b045eea102e0f1ba4dc0a54 (patch) | |
tree | 82d1b29ddfb935c3f7e4488eb0a84683887766ae /src | |
parent | 435a69da1e895c47dc7bdee7b427d0b0f54b4e9f (diff) | |
download | openttd-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
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 ******************************/ |