workaround for older gcc

This commit is contained in:
Michael Davidsaver
2017-11-28 16:12:01 -06:00
parent d4eb31e729
commit bc0892a1ad

View File

@@ -193,7 +193,10 @@ void registerRefTrack();
*/
class epicsShareClass ClientChannel
{
public:
// public only as a workaround for old gcc
struct Impl;
private:
std::tr1::shared_ptr<Impl> impl;
friend class ClientProvider;
friend void detail::registerRefTrack();