From 94711098e4bc0f2c95c11c0cdb0766857872f87a Mon Sep 17 00:00:00 2001 From: Tamito Kajiyama Date: Thu, 15 Oct 2009 19:38:45 +0000 Subject: * Fixed compiler warnings concerning the lack of a newline at the end of a file. * Fixed compiler warnings due to an invalid argument to PyList_New(). NULL was used instead of 0 to create an empty list. --- source/blender/freestyle/intern/geometry/FastGrid.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/freestyle/intern/geometry') diff --git a/source/blender/freestyle/intern/geometry/FastGrid.cpp b/source/blender/freestyle/intern/geometry/FastGrid.cpp index b090a3df67f..325126b4b96 100755 --- a/source/blender/freestyle/intern/geometry/FastGrid.cpp +++ b/source/blender/freestyle/intern/geometry/FastGrid.cpp @@ -59,4 +59,4 @@ void FastGrid::fillCell(const Vec3u& p, Cell& cell) { assert(p[1]<_cells_nb[1]); assert(p[2]<_cells_nb[2]); _cells[_cells_nb[0] * (p[2] * _cells_nb[1] + p[1]) + p[0]] = &cell; -} \ No newline at end of file +} -- cgit v1.2.3