Addressed C99 compiler issues of initializing variables in header and unused included statements.

This commit is contained in:
waltjohnson
2016-05-19 09:58:18 -06:00
parent f5e2dabc2b
commit 7c158aa59b
7 changed files with 23 additions and 15 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ float max(float val1, float val2)
return (val1 > val2) ? val1 : val2;
}
float constrain(float &val, float min, float max)
float constrain(float val, float min, float max)
{
return (val < min) ? min : ((val > max) ? max : val);
}