(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 c616b8cc0c
commit 22b3cb1fc7

View File

@@ -36,7 +36,7 @@ struct RoadStop : RoadStopPool::PoolItem<&_roadstop_pool> {
int occupied; ///< The amount of occupied stop in tile 'units' int occupied; ///< The amount of occupied stop in tile 'units'
public: 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 */ /** Create an entry */
Entry() : length(0), occupied(0) {} Entry() : length(0), occupied(0) {}