Originally Posted by Anders
View Post
HTML Code:
script.cpp Source\boost/scoped_ptr.hpp(64) : fatal error C1001: INTERNAL COMPILER ERROR (compiler file 'E:\9044\vc98\p2\src\P2\ehexcept.c', line 882) Please choose the Technical Support command on the Visual C++ Help menu, or open the Technical Support help file for more information scons: *** [build\urelease\makensis\script.obj] Error 2 scons: building terminated because of errors.
PHP Code:
59| ...
60| void reset(T * p = 0) // never throws
61| {
62| assert(p == 0 || p != ptr); // catch self-reset errors
63| this_type(p).swap(*this);
64| } // <-----------fatal error C1001
65| ...
Originally Posted by Anders
View Post
Originally Posted by Anders
View Post

Comment