Fix Windows build issues

This commit is contained in:
Andrew Johnson
2018-10-29 14:11:02 -05:00
parent 2450e356f5
commit 4b98e70ce0
2 changed files with 2 additions and 1 deletions

View File

@ -234,7 +234,7 @@ PVStructurePtr PVCopy::getOptions(std::size_t fieldOffset)
if(!node->isStructure) return NULLPVStructure; if(!node->isStructure) return NULLPVStructure;
CopyStructureNodePtr structNode = static_pointer_cast<CopyStructureNode>(node); CopyStructureNodePtr structNode = static_pointer_cast<CopyStructureNode>(node);
CopyNodePtrArrayPtr nodes = structNode->nodes; CopyNodePtrArrayPtr nodes = structNode->nodes;
boolean okToContinue = false; bool okToContinue = false;
for(size_t i=0; i< nodes->size(); i++) { for(size_t i=0; i< nodes->size(); i++) {
node = (*nodes)[i]; node = (*nodes)[i];
size_t soff = node->structureOffset; size_t soff = node->structureOffset;

View File

@ -6,6 +6,7 @@
#include <pv/pvData.h> #include <pv/pvData.h>
#include <pv/bitSet.h> #include <pv/bitSet.h>
#include <pv/convert.h> #include <pv/convert.h>
#include <pv/pvTimeStamp.h>
#define epicsExportSharedSymbols #define epicsExportSharedSymbols
#include <pv/pvTimestampPlugin.h> #include <pv/pvTimestampPlugin.h>