From: Mikko Rasa Date: Sun, 22 Mar 2015 15:32:16 +0000 (+0200) Subject: Add a using statement for get_end in Zone X-Git-Url: http://git.tdb.fi/?p=r2c2.git;a=commitdiff_plain;h=3907520897611cb1b5f2f938c60d3eaff34477a5 Add a using statement for get_end in Zone The virtual function declaration hides the other overload if it's not explicitly brought in. --- diff --git a/source/libr2c2/zone.h b/source/libr2c2/zone.h index cee45e8..9542a05 100644 --- a/source/libr2c2/zone.h +++ b/source/libr2c2/zone.h @@ -49,6 +49,7 @@ public: private: TrackIter next_iter(const TrackIter &) const; public: + using TrackChain::get_end; virtual TrackIter get_end(Direction) const; void save(std::list &) const;