drop emptyStringtring

This commit is contained in:
Michael Davidsaver
2017-12-29 11:12:36 -06:00
parent cb7e4e858b
commit 2046678caa

View File

@@ -98,8 +98,6 @@ namespace epics {
break;
}
}
static string emptyStringtring;
string SerializeHelper::deserializeString(ByteBuffer* buffer,
DeserializableControl* control) {
@@ -139,7 +137,7 @@ namespace epics {
}
}
else
return emptyStringtring;
return std::string();
}
}
}