Page 1 of 1

Error regex - codelite v1.0.2304

Posted: Tue Nov 11, 2008 2:52 pm
by remy
The error regex for g++ should look for an optional column number. When g++ doesn't find an include file the error message specify the line number *and* the column number. With the current regex, this kind of error is not highlighted. It should be

Code: Select all

(^[a-zA-Z:]{0,2}[a-zA-Z\.0-9_/\+\-]+ *)(:)([0-9]+)(:)([0-9]+:)?( *[eor]+:?)
instead of

Code: Select all

(^[a-zA-Z:]{0,2}[a-zA-Z\.0-9_/\+\-]+ *)(:)([0-9]+)(:)( *[eor]+:?)

Re: Error regex - codelite v1.0.2304

Posted: Tue Nov 11, 2008 3:20 pm
by eranif
Thanks, I will update it in SVN

Eran