Skip to content

Commit

Permalink
Make Clang-Tidy happy.
Browse files Browse the repository at this point in the history
  • Loading branch information
agarny committed Aug 12, 2020
1 parent dbccfd0 commit 9952bec
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -193,7 +193,7 @@ void PendulumWindowWindow::initData(const quint64 &pDataSize,
mTimeValues = new double[pDataSize];

for (quint64 i = 0; i < pDataSize; ++i) {
mTimeValues[i] = i*pTimeInterval;
mTimeValues[i] = double(i)*pTimeInterval;
}

mR0Values = pR0Values;
Expand Down

0 comments on commit 9952bec

Please sign in to comment.