From 24c4d5b06d231785db01500360c26815d8fe4d15 Mon Sep 17 00:00:00 2001 From: rubidium Date: Wed, 7 Mar 2007 12:11:48 +0000 Subject: (svn r9051) -Codechange: typedef [enum|struct] Y {} X; -> [enum|struct] X {}; --- src/yapf/yapf.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/yapf/yapf.h') diff --git a/src/yapf/yapf.h b/src/yapf/yapf.h index eb6fa96ef..cafd5df7e 100644 --- a/src/yapf/yapf.h +++ b/src/yapf/yapf.h @@ -88,7 +88,7 @@ extern int _aystar_stats_closed_size; */ /** Base struct for track followers. */ -typedef struct FollowTrack_t +struct FollowTrack_t { const Vehicle* m_veh; ///< moving vehicle TileIndex m_old_tile; ///< the origin (vehicle moved from) before move @@ -100,7 +100,7 @@ typedef struct FollowTrack_t bool m_is_bridge; ///< last turn passed bridge ramp bool m_is_station; ///< last turn passed station int m_tiles_skipped; ///< number of skipped tunnel or station tiles -} FollowTrack_t; +}; /** Initializes FollowTrack_t structure */ void FollowTrackInit(FollowTrack_t *This, const Vehicle* v); -- cgit v1.2.3-54-g00ecf