"Jose' Matos" <[EMAIL PROTECTED]> writes: | On Thursday 26 January 2006 18:19, Rex Dieter wrote: | > ../../boost/boost/config/compiler/gcc.hpp:92:7: warning: #warning | > "Unknown compiler version - please run the configure tests and report | > the results" | | This is understandable since gcc 4.1 was unknown when this version of boost | was release. It is a warning so it can be ignored. | | > ../../src/paragraph.h:113: error: extra qualification 'Paragraph::' on | > member 'asString' | | In this case the error message is clear, remove the extra Paragraph:: in | that line. Since gcc 4.1 that became an error. | | The culprit is: | | class Paragraph { | public: | ... | std::string const Paragraph::asString(Buffer const & buffer, | ... | | Notice that the qualifier Paragraph:: should not be there. This is | documented in Fedora Extras documentation regarding FC5. | | Lars this should be fixed both for 1.4.0 and 1.3.8. The fix is obvious, | should it be committed?
I thought I already had fixed this (1.4.0) -- Lgb