Hello, When I try to build svn 15634 using gcc 3.3 (OS X 10.3), I get a compile error:
line-geometry.cpp: In member function `virtual NR::MaybeNR::Point Box3D::Line::intersect(const Box3D::Line&)': line-geometry.cpp:57: error: parse error before `;' token
I was able to build 0.45.1 in this same environment, so this error is relatively new. The error seems to be caused when something is set to NR::Nothing. This example causes the same error:
namespace NR { struct Nothing {}; }; void function() { void* junk = NR::Nothing; //<---- parse error }
I played with this a bit, and found that the problem is not related to the namespace nor to the fact that the struct has no members.
Does this sound familiar to anyone, or can anyone recommend a way (search terms) to find out more about this?
Thanks!, John