use const ref in exist test async io completion

This commit is contained in:
Jeff Hill
1999-08-05 00:37:05 +00:00
parent eb3a27940b
commit e3c8453e72
2 changed files with 5 additions and 2 deletions
+4 -1
View File
@@ -29,6 +29,9 @@
*
* History
* $Log$
* Revision 1.5 1997/08/05 00:46:58 jhill
* fixed warnings
*
* Revision 1.4 1997/06/13 09:15:53 jhill
* connect proto changes
*
@@ -78,7 +81,7 @@ casAsyncExIOI::~casAsyncExIOI()
//
// casAsyncExIOI::postIOCompletion()
//
epicsShareFunc caStatus casAsyncExIOI::postIOCompletion(const pvExistReturn retValIn)
epicsShareFunc caStatus casAsyncExIOI::postIOCompletion(const pvExistReturn &retValIn)
{
this->retVal = retValIn;
return this->postIOCompletionI();
+1 -1
View File
@@ -868,7 +868,7 @@ public:
// (this function does not delete the casAsyncIO object).
// Only the first call to this function has any effect.
//
epicsShareFunc caStatus postIOCompletion(const pvExistReturn retValIn)
epicsShareFunc caStatus postIOCompletion(const pvExistReturn &retValIn)
{
return this->casAsyncExIOI::postIOCompletion (retValIn);
}