stupid vxWorks m_data macro

This commit is contained in:
Matej Sekoranja
2014-09-09 15:43:14 +02:00
parent ec11790b10
commit 38f1ce1c30

View File

@@ -1489,13 +1489,13 @@ namespace epics {
POINTER_DEFINITIONS(SecurityPluginMessageTransportSender);
SecurityPluginMessageTransportSender(PVField::shared_pointer const & data) :
m_data(data)
_data(data)
{
}
void send(ByteBuffer* buffer, TransportSendControl* control) {
control->startMessage((int8)5, 0);
SerializationHelper::serializeFull(buffer, control, m_data);
SerializationHelper::serializeFull(buffer, control, _data);
// send immediately
control->flush(true);
}
@@ -1504,7 +1504,7 @@ namespace epics {
void unlock() {}
private:
PVField::shared_pointer m_data;
PVField::shared_pointer _data;
};
void BlockingTCPTransportCodec::sendSecurityPluginMessage(epics::pvData::PVField::shared_pointer const & data) {