Fixes needed for older VxWorks GCC
This commit is contained in:
@@ -1366,6 +1366,8 @@ public:
|
||||
|
||||
typedef std::vector<std::string> stringVector_t;
|
||||
|
||||
virtual ~ChannelProviderRegistry() {}
|
||||
|
||||
|
||||
//! Create a custom registry
|
||||
static ChannelProviderRegistry::shared_pointer build();
|
||||
|
||||
@@ -193,8 +193,10 @@ void registerRefTrack();
|
||||
*/
|
||||
class epicsShareClass ClientChannel
|
||||
{
|
||||
#if defined(__GNUC__) && (__GNUC__ * 100 + __GNUC_MINOR__ < 305)
|
||||
public:
|
||||
// public only as a workaround for old gcc
|
||||
// Impl is public only as a workaround on older GCC
|
||||
#endif
|
||||
struct Impl;
|
||||
private:
|
||||
std::tr1::shared_ptr<Impl> impl;
|
||||
|
||||
Reference in New Issue
Block a user