From 42930c643cb83e7ddaaabc73092796bfab80d727 Mon Sep 17 00:00:00 2001 From: Kent Mein Date: Wed, 29 Mar 2006 16:47:56 +0000 Subject: =?UTF-8?q?Added=20BOP=5FMesh=20constructor=20to=20get=20rid=20of?= =?UTF-8?q?=20this:=20BOP=5FMesh.h:45:=20warning:=20=E2=80=98class=20BOP?= =?UTF-8?q?=5FMesh=E2=80=99=20only=20defines=20private=20constructors=20an?= =?UTF-8?q?d=20h=20as=20no=20friends?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit drawimasel.c initalized a variable so it didn't give warnings about it. (wasn't really needed but if the code changes could be potential issue) Kent --- intern/boolop/intern/BOP_Mesh.cpp | 2 ++ intern/boolop/intern/BOP_Mesh.h | 1 + 2 files changed, 3 insertions(+) (limited to 'intern/boolop') diff --git a/intern/boolop/intern/BOP_Mesh.cpp b/intern/boolop/intern/BOP_Mesh.cpp index 24d5b3fb6a9..595ccae6b93 100644 --- a/intern/boolop/intern/BOP_Mesh.cpp +++ b/intern/boolop/intern/BOP_Mesh.cpp @@ -34,6 +34,8 @@ #include +BOP_Mesh::BOP_Mesh() {} + /** * Destroys a mesh. */ diff --git a/intern/boolop/intern/BOP_Mesh.h b/intern/boolop/intern/BOP_Mesh.h index 6751df7c4e7..644f9ab691c 100644 --- a/intern/boolop/intern/BOP_Mesh.h +++ b/intern/boolop/intern/BOP_Mesh.h @@ -57,6 +57,7 @@ private: bool testFace(BOP_Face *face); public: + BOP_Mesh (); ~BOP_Mesh(); BOP_Index addVertex(MT_Point3 point); -- cgit v1.2.3