summaryrefslogtreecommitdiff
path: root/src/roadstop_base.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-12-07 10:44:58 +0000
committerrubidium <rubidium@openttd.org>2009-12-07 10:44:58 +0000
commit0e17c23ddd1bdd90023359ea76d739782af47278 (patch)
tree87e7108c5eafcee53f78cead44d0e3cea1af76d3 /src/roadstop_base.h
parentd6e73ea1ce9db96cb76495c8a1edce199790c552 (diff)
downloadopenttd-0e17c23ddd1bdd90023359ea76d739782af47278.tar.xz
(svn r18422) -Fix (r18404): MSVC complaining about struct vs class
Diffstat (limited to 'src/roadstop_base.h')
-rw-r--r--src/roadstop_base.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/roadstop_base.h b/src/roadstop_base.h
index 44e4cd7dd..d323e79c0 100644
--- a/src/roadstop_base.h
+++ b/src/roadstop_base.h
@@ -36,7 +36,7 @@ struct RoadStop : RoadStopPool::PoolItem<&_roadstop_pool> {
int occupied; ///< The amount of occupied stop in tile 'units'
public:
- friend class RoadStop; ///< Oh yeah, the road stop may play with me.
+ friend struct RoadStop; ///< Oh yeah, the road stop may play with me.
/** Create an entry */
Entry() : length(0), occupied(0) {}