mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-15 13:48:57 +08:00
0025000: Missing implementation of method NCollection_SparseArrayBase::changeValue()
Method changeValue() removed from NCollection_SparseArrayBase, ChangeValue() of NCollection_SparseArray is used instead
This commit is contained in:
@@ -131,14 +131,13 @@ public:
|
||||
//! Direct const access to the item
|
||||
const TheItemType& Find (const Standard_Size theIndex) const
|
||||
{
|
||||
return *(TheItemType*)this->getValue(theIndex);
|
||||
return Value(theIndex);
|
||||
}
|
||||
|
||||
//! Modification access to the item; allocates space if
|
||||
//! necessary and marks the item as defined
|
||||
//! Modification access to the item
|
||||
TheItemType& ChangeFind (const Standard_Size theIndex)
|
||||
{
|
||||
return *(TheItemType*)(this->changeValue (theIndex));
|
||||
return ChangeValue(theIndex);
|
||||
}
|
||||
|
||||
//! Set a value as explicit method
|
||||
|
||||
Reference in New Issue
Block a user