Skip to content
Open

C4250 #108

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/pv/pvData.h
Original file line number Diff line number Diff line change
Expand Up @@ -513,6 +513,10 @@ typedef std::tr1::shared_ptr<PVULong> PVULongPtr;
typedef std::tr1::shared_ptr<PVFloat> PVFloatPtr;
typedef std::tr1::shared_ptr<PVDouble> PVDoublePtr;

#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable:4250)
#endif
/**
* @brief PVString is special case, since it implements SerializableArray
*
Expand All @@ -538,6 +542,9 @@ class epicsShareClass PVString : public PVScalarValue<std::string>, Serializable
EPICS_NOT_COPYABLE(PVString)
};
typedef std::tr1::shared_ptr<PVString> PVStringPtr;
#ifdef _MSC_VER
#pragma warning(pop)
#endif


/**
Expand Down
Loading