mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0029422: OCAF, old persistence - wrong implementation of writing a reference
This commit is contained in:
parent
2651bb324e
commit
fcca9d7cd0
@ -35,7 +35,7 @@ void StdObjMgt_WriteData::WritePersistentObject (const Handle(StdObjMgt_Persiste
|
||||
|
||||
StdObjMgt_WriteData& StdObjMgt_WriteData::operator << (const Handle(StdObjMgt_Persistent)& thePersistent)
|
||||
{
|
||||
*myDriver << (thePersistent ? thePersistent->RefNum() : 0);
|
||||
myDriver->PutReference(thePersistent ? thePersistent->RefNum() : 0);
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
@ -53,7 +53,7 @@ public:
|
||||
template <class Persistent>
|
||||
StdObjMgt_WriteData& operator << (const Handle(Persistent)& thePersistent)
|
||||
{
|
||||
*myDriver << (thePersistent ? thePersistent->RefNum() : 0);
|
||||
myDriver->PutReference(thePersistent ? thePersistent->RefNum() : 0);
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user