Main change is epicsBoolean=>bool

equuals => operator==
Additional implementation in Convert.cpp
This commit is contained in:
Marty Kraimer
2010-10-19 14:52:07 -04:00
parent 4b912a3c30
commit e5aac3b8e4
32 changed files with 689 additions and 160 deletions
+3 -3
View File
@@ -16,7 +16,7 @@ namespace epics { namespace pvData {
{}
int length;
int capacity;
epicsBoolean capacityMutable;
bool capacityMutable;
};
PVArray::PVArray(PVStructure *parent,FieldConstPtr field)
@@ -51,7 +51,7 @@ namespace epics { namespace pvData {
}
epicsBoolean PVArray::isCapacityMutable()
bool PVArray::isCapacityMutable()
{
if(PVField::isImmutable()) {
return epicsFalse;
@@ -59,7 +59,7 @@ namespace epics { namespace pvData {
return pImpl->capacityMutable;
}
void PVArray::setCapacityMutable(epicsBoolean isMutable)
void PVArray::setCapacityMutable(bool isMutable)
{
if(isMutable && PVField::isImmutable()) {
PVField::message(fieldImmutable,errorMessage);