-
Attached a second patch that:
-adds private assignment operators to some classes to silence C4512 warnings
-adds some pragmas to silence C4127 warnings
File Added: patches2.zip.
2008-04-06 22:51:44 UTC in The Spirit Parser Library
-
running the Spirit2 regression tests with VC9 on warning level 4 produces a large number of warnings, of several types:
warning C4100: unreferenced formal parameter
warning C4512: assignment operator could not be generated
warning C4127: conditional expression is constant
warning C4244: xxx possible loss of data
Attached is a patch that silences a large number of c4100 warnings. I'll...
2008-04-02 23:29:41 UTC in The Spirit Parser Library
-
While doing some tests with Arabica/libxml2+VC8, i got a crash in libxml2_wrapper::SAXcomment(), at:
if(lexicalHandler_)
lexicalHandler_->comment
lexicalHandler_ isn't initialized to NULL in the constructor (and i hadnt set a handler up myself), so the check passes and it tries to call comment().
2007-12-30 22:12:43 UTC in Arabica XML and HTML Toolkit for C++