Fix many warnings about implicit integer conversions when compiling for 64 bits.

--HG--
branch : minor
This commit is contained in:
Alex Szpakowski
2015-02-20 01:20:08 -04:00
parent 85de3c41fb
commit ebc68023a7
39 changed files with 114 additions and 114 deletions
+1 -1
View File
@@ -112,7 +112,7 @@ public:
* @param accuracy The 'fineness' of the curve.
* @returns A polygon chain that approximates the bezier curve.
**/
std::vector<Vector> render(size_t accuracy = 4) const;
std::vector<Vector> render(int accuracy = 4) const;
private:
std::vector<Vector> controlPoints;