remove superflous class member.

This commit is contained in:
Axel Kohlmeyer
2023-12-02 09:37:36 -05:00
parent 318556497f
commit 7f3af781fa
2 changed files with 1 additions and 3 deletions

View File

@ -42,7 +42,7 @@ void Timer::print()
{
if ( (flag&3) != 3) return;
cpu_time_used = ((double) (t2 - t1)) / CLOCKS_PER_SEC;
double cpu_time_used = ((double) (t2 - t1)) / CLOCKS_PER_SEC;
printf("Total CPU time used: %g seconds.\n", cpu_time_used);
return;