Skip to content
Snippets Groups Projects
Commit e5689e49 authored by Stéphane Albert's avatar Stéphane Albert
Browse files

COMP: Fixed unused parameter warning.

parent 38eacfe5
No related branches found
No related tags found
No related merge requests found
...@@ -142,7 +142,7 @@ Lerp2( X& x, Y& y, ...@@ -142,7 +142,7 @@ Lerp2( X& x, Y& y,
const K& _1_minus_k( 1 - k ); const K& _1_minus_k( 1 - k );
x = k * x1 + _1_minus_k * x0; x = k * x1 + _1_minus_k * x0;
y = k * y1 + _1_minus_k * y1; y = k * y1 + _1_minus_k * y0;
} }
/*******************************************************************************/ /*******************************************************************************/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment