Skip to content
Snippets Groups Projects
Commit 952af0ec authored by Dominik Thoennes's avatar Dominik Thoennes
Browse files

fix unused variables

parent cc9b726a
Branches
No related tags found
No related merge requests found
...@@ -48,7 +48,7 @@ void simpleTiming() ...@@ -48,7 +48,7 @@ void simpleTiming()
sum += 1; sum += 1;
pool["In the loop"].end(); pool["In the loop"].end();
} }
WALBERLA_UNUSED(sum);
pool["All Together"].end(); pool["All Together"].end();
cout << pool << endl; cout << pool << endl;
...@@ -68,7 +68,7 @@ void scopedTimer() ...@@ -68,7 +68,7 @@ void scopedTimer()
sum += std::asin( std::sin( d ) ); sum += std::asin( std::sin( d ) );
sum += std::acos( std::cos( d ) ); sum += std::acos( std::cos( d ) );
} }
WALBERLA_UNUSED(sum);
pool["normal timer"].end(); pool["normal timer"].end();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment