remove PVField::notImplemented

An unused waste of space in every instance...
This commit is contained in:
Michael Davidsaver
2016-02-24 16:03:16 -05:00
parent 336a8b3bc2
commit 4f499aed01
2 changed files with 1 additions and 3 deletions

View File

@@ -24,8 +24,7 @@ using std::string;
namespace epics { namespace pvData {
PVField::PVField(FieldConstPtr field)
: notImplemented("not implemented"),
parent(NULL),field(field),
: parent(NULL),field(field),
fieldOffset(0), nextFieldOffset(0),
immutable(false)
{

View File

@@ -254,7 +254,6 @@ protected:
private:
static void computeOffset(const PVField *pvField);
static void computeOffset(const PVField *pvField,std::size_t offset);
std::string notImplemented;
std::string fieldName;
PVStructure *parent;
FieldConstPtr field;