changeset 13892:94fcf1c0fffd draft

(svn r18422) -Fix (r18404): MSVC complaining about struct vs class
author rubidium <rubidium@openttd.org>
date Mon, 07 Dec 2009 10:44:58 +0000
parents 14679a6bbf26
children bf07faa89849
files src/roadstop_base.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/roadstop_base.h
+++ b/src/roadstop_base.h
@@ -36,7 +36,7 @@
 		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) {}