diff options
author | rubidium <rubidium@openttd.org> | 2009-12-07 10:44:58 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-12-07 10:44:58 +0000 |
commit | 0e17c23ddd1bdd90023359ea76d739782af47278 (patch) | |
tree | 87e7108c5eafcee53f78cead44d0e3cea1af76d3 /src | |
parent | d6e73ea1ce9db96cb76495c8a1edce199790c552 (diff) | |
download | openttd-0e17c23ddd1bdd90023359ea76d739782af47278.tar.xz |
(svn r18422) -Fix (r18404): MSVC complaining about struct vs class
Diffstat (limited to 'src')
-rw-r--r-- | src/roadstop_base.h | 2 |
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) {} |