diff options
author | KUDr <kudr@openttd.org> | 2007-01-14 19:29:21 +0000 |
---|---|---|
committer | KUDr <kudr@openttd.org> | 2007-01-14 19:29:21 +0000 |
commit | 1eac31a1d89e09b9fc980fd7755a753e6ee54656 (patch) | |
tree | 6c5c776770c971c6633e970b908b9ec29bf0b7f3 | |
parent | 8b65342449c7d36ef166ec2e5dc37abe3cc67bdf (diff) | |
download | openttd-1eac31a1d89e09b9fc980fd7755a753e6ee54656.tar.xz |
(svn r8126) -Fix (r8125): missing #include fixes compilation error on g++ (still some warnings, working on it)
-rw-r--r-- | src/station_cmd.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp index faacbab82..3757a0a75 100644 --- a/src/station_cmd.cpp +++ b/src/station_cmd.cpp @@ -35,6 +35,8 @@ #include "date.h" #include "helpers.hpp" +#include <memory> // for auto_ptr + typedef enum StationRectModes { RECT_MODE_TEST = 0, |