From 150ac45de3660d041c1989f23c4910e99c92a203 Mon Sep 17 00:00:00 2001 From: mrkraimer Date: Tue, 9 Apr 2019 11:15:00 -0400 Subject: [PATCH] bug in pvaClientData; fix doxygen warning; update doc --- documentation/pvaClientCPP.html | 4 ++-- src/pv/pvaClient.h | 3 ++- src/pvaClientData.cpp | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/documentation/pvaClientCPP.html b/documentation/pvaClientCPP.html index 0279af3..68fe4c2 100644 --- a/documentation/pvaClientCPP.html +++ b/documentation/pvaClientCPP.html @@ -26,7 +26,7 @@

EPICS pvaClientCPP

-

Release 4.4 - December 2018

+

Release 4.4 - April 2019

Abstract

@@ -79,7 +79,7 @@ It is intended for developers that want to use pvaClientCPP.

Developer Guide

A guide for developers is available at +href="https://mrkraimer.github.io/website/developerGuide/developerGuide.html"> developerGuide

diff --git a/src/pv/pvaClient.h b/src/pv/pvaClient.h index 0f8a7f2..123aa23 100644 --- a/src/pv/pvaClient.h +++ b/src/pv/pvaClient.h @@ -405,7 +405,8 @@ public: epics::pvData::shared_vector const & value, std::string const & request = "field(value)"); /** @brief Copy array to the value field. - * @param value data source + * @param value The data used to update the channel value. + * @param request The request as a string to pass to createRequest. * @throw runtime_error if failure. */ void putStringArray(std::vector const & value,std::string const & request = "field(value)"); diff --git a/src/pvaClientData.cpp b/src/pvaClientData.cpp index 129b4cb..5db266d 100644 --- a/src/pvaClientData.cpp +++ b/src/pvaClientData.cpp @@ -254,7 +254,7 @@ shared_vector PvaClientData::getDoubleArray() if(pvValue) { Type type = pvValue->getField()->getType(); if(type==scalarArray) { - PVScalarArrayPtr pvScalarArray = static_pointer_cast(pvValue); + pvScalarArray = static_pointer_cast(pvValue); } } if(!pvScalarArray) {