Skip to content

Commit

Permalink
static cast first
Browse files Browse the repository at this point in the history
  • Loading branch information
rboston628 committed Sep 27, 2024
1 parent 98e49b7 commit 14749a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Framework/Algorithms/src/CompareWorkspaces.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,7 @@ bool CompareWorkspaces::checkData(const API::MatrixWorkspace_const_sptr &ws1,

// Now check the data itself
PARALLEL_FOR_IF(m_parallelComparison && ws1->threadSafe() && ws2->threadSafe())
for (long i = 0; i < numHists; ++i) {
for (long i = 0; i < static_Cast<long>(numHists); ++i) {
PARALLEL_START_INTERRUPT_REGION
m_progress->report("Histograms");

Expand Down

0 comments on commit 14749a8

Please sign in to comment.