1
0
Fork 0

(svn r15294) -Fix: accessing of inaccessible base

release/0.7
rubidium 2009-01-29 08:08:03 +00:00
parent d7971e5e37
commit 627d54a081
1 changed files with 2 additions and 2 deletions

View File

@ -238,7 +238,7 @@ public:
};
template <class Types>
class CYapfFollowAnySafeTileRailT : protected CYapfReserveTrack<Types>
class CYapfFollowAnySafeTileRailT : public CYapfReserveTrack<Types>
{
public:
typedef typename Types::Tpf Tpf; ///< the pathfinder class (derived from THIS class)
@ -320,7 +320,7 @@ public:
};
template <class Types>
class CYapfFollowRailT : protected CYapfReserveTrack<Types>
class CYapfFollowRailT : public CYapfReserveTrack<Types>
{
public:
typedef typename Types::Tpf Tpf; ///< the pathfinder class (derived from THIS class)