(svn r18422) -Fix (r18404): MSVC complaining about struct vs class

This commit is contained in:
rubidium 2009-12-07 10:44:58 +00:00
parent d6e73ea1ce
commit 0e17c23ddd

View File

@ -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) {}