[Bf-committers] Compiler error with MSVC6 on SG_Tree.cpp

Douglas Toltzman bf-committers@blender.org
Mon, 17 May 2004 16:11:38 -0400 (EDT)


Try changing line 106 which reads;
SG_Tree *left(m_left), *right(m_right);

to;
SG_Tree *left = m_left, *right = m_right;

... the syntax should be equivalent.  If that doesn't work, then SG_Tree
must be an undefined type, or something.

Douglas Toltzman