Skip to content

Commit

Permalink
initialize hpar field to null (#2994)
Browse files Browse the repository at this point in the history
  • Loading branch information
david-cortes-intel authored Dec 2, 2024
1 parent f8aad16 commit 187d835
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cpp/daal/include/algorithms/algorithm_container_base.h
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,9 @@ class AlgorithmContainerImpl : public AlgorithmContainer<mode>
* Default constructor
* \param[in] daalEnv Pointer to the structure that contains information about the environment
*/
AlgorithmContainerImpl(daal::services::Environment::env * daalEnv = 0) : AlgorithmContainer<mode>(daalEnv), _in(0), _pres(0), _res(0), _par(0) {}
AlgorithmContainerImpl(daal::services::Environment::env * daalEnv = 0)
: AlgorithmContainer<mode>(daalEnv), _in(0), _pres(0), _res(0), _par(0), _hpar(0)
{}

virtual ~AlgorithmContainerImpl() {}

Expand Down

0 comments on commit 187d835

Please sign in to comment.