initialize Element m_tag to zero

This commit is contained in:
erwin.coumans 2008-05-06 02:57:27 +00:00
parent b9acc820d6
commit 6cc18e05aa

View File

@ -162,6 +162,10 @@ public:
struct Element struct Element
{ {
void* m_tag; // User data void* m_tag; // User data
Element()
{
m_tag=0;
}
}; };
/* Material */ /* Material */
struct Material : Element struct Material : Element