more compat
This commit is contained in:
@ -2,6 +2,11 @@
|
||||
#include <epicsAtomic.h>
|
||||
#include <errlog.h>
|
||||
|
||||
#include <epicsMutex.h>
|
||||
#include <epicsTimer.h>
|
||||
|
||||
#include <pv/pvAccess.h>
|
||||
|
||||
#define epicsExportSharedSymbols
|
||||
#include "helper.h"
|
||||
#include "pva2pva.h"
|
||||
|
@ -111,10 +111,13 @@ private:
|
||||
public:
|
||||
//! Construct a new empty set
|
||||
weak_value_map() :m_data(new data) {}
|
||||
|
||||
private:
|
||||
//! Not copyable
|
||||
weak_value_map(const weak_value_map& O);
|
||||
//! Not copyable
|
||||
weak_value_map& operator=(const weak_value_map& O);
|
||||
public:
|
||||
|
||||
//! exchange the two sets.
|
||||
//! @warning Not thread safe (exchanges mutexes as well)
|
||||
|
@ -132,10 +132,13 @@ private:
|
||||
public:
|
||||
//! Construct a new empty set
|
||||
weak_set() :m_data(new data) {}
|
||||
|
||||
private:
|
||||
//! Not copyable
|
||||
weak_set(const weak_set& O);
|
||||
//! Not copyable
|
||||
weak_set& operator=(const weak_set& O);
|
||||
public:
|
||||
|
||||
//! exchange the two sets.
|
||||
//! @warning Not thread safe (exchanges mutexes as well)
|
||||
|
Reference in New Issue
Block a user