I am using cxxtest with my project, and it generates
messages like so, which I expect to then have the IDE
jump to the offending line:
../../src/sample_tests.h:8: Error: Expected (1 + 1 ==
3), found (2 != 3)
This causes dev-c++ to not display the error correctly,
because of the colon in Error:, since the Message
column shows only the text after Error, and nothing for
Line and File. When I removed the colons from
cxxtest's formatter, it worked fine. The parser for
the compiler tab really should be fixed to accomodate
messages that themselves contain colons.