mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: Corrected TimeDataEntry copy constructor - mantis #762
This commit is contained in:
@ -62,7 +62,7 @@ Foam::TimeDataEntry<Type>::TimeDataEntry
|
|||||||
name_(tde.name_),
|
name_(tde.name_),
|
||||||
entry_()
|
entry_()
|
||||||
{
|
{
|
||||||
if (entry_.valid())
|
if (tde.entry_.valid())
|
||||||
{
|
{
|
||||||
entry_.reset(tde.entry_->clone().ptr());
|
entry_.reset(tde.entry_->clone().ptr());
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user