Fixed some variable shadowing warnings.

This commit is contained in:
David Williams
2012-11-01 13:05:43 +01:00
parent 8f4b422ece
commit 38f34faaac
3 changed files with 3 additions and 5 deletions

View File

@ -92,8 +92,7 @@ namespace PolyVox
float f(void) const
{
float f = gVal + hVal;
return f;
return gVal + hVal;
}
};