Skip to content

Commit

Permalink
clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
Vika-F committed Jan 8, 2025
1 parent c16bffa commit 6ee01e6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cpp/daal/src/algorithms/algorithm_base_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,11 @@ algorithms::Argument::Argument(const algorithms::Argument & other)
: _storage(new internal::ArgumentStorage(*(internal::ArgumentStorage *)other._storage.get())), idx(0)
{}

algorithms::Argument & algorithms::Argument::operator=(const algorithms::Argument & other) {
algorithms::Argument & algorithms::Argument::operator=(const algorithms::Argument & other)
{
if (this == &other) return *this;
_storage = data_management::DataCollectionPtr(new internal::ArgumentStorage(*(internal::ArgumentStorage *)other._storage.get()));
idx = 0;
idx = 0;
return *this;
}

Expand Down

0 comments on commit 6ee01e6

Please sign in to comment.