Skip to content

Commit

Permalink
Remove unnecessary cast. Fixes #13421 (#14284)
Browse files Browse the repository at this point in the history
* Remove unnecessary cast. This should fix #13421

* Removed too much
  • Loading branch information
bellenot committed Dec 21, 2023
1 parent 5815897 commit fbd6abb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tmva/tmva/inc/TMVA/RBatchGenerator.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public:

// Create tensor to load the chunk into
fChunkTensor =
std::make_unique<TMVA::Experimental::RTensor<float>>((std::vector<std::size_t>){fChunkSize, fNumColumns});
std::make_unique<TMVA::Experimental::RTensor<float>>(std::vector<std::size_t>{fChunkSize, fNumColumns});
}

~RBatchGenerator() { DeActivate(); }
Expand Down

0 comments on commit fbd6abb

Please sign in to comment.