pva/client.h: no lastRequest()

until #97 is resolved.  Avoids annoying message.

https://github.com/epics-base/pvAccessCPP/issues/97
This commit is contained in:
Michael Davidsaver
2018-06-29 12:02:39 -07:00
parent 135f66393d
commit c93f7a35f7

View File

@@ -105,7 +105,6 @@ struct GetPutter : public pva::ChannelPutRequester,
callEvent(G);
} else if(getcb){
channelPut->lastRequest();
channelPut->get();
started = true;
@@ -130,7 +129,6 @@ struct GetPutter : public pva::ChannelPutRequester,
}
// check putcb again after UnGuard
if(putcb) {
channelPut->lastRequest();
channelPut->put(std::tr1::const_pointer_cast<pvd::PVStructure>(args.root), tosend);
started = true;
}