Error regex - codelite v1.0.2304

Discussion about CodeLite development process and patches
remy
CodeLite Curious
Posts: 2
Joined: Tue Nov 11, 2008 2:44 pm
Contact:

Error regex - codelite v1.0.2304

Post 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]+:?)
User avatar
eranif
CodeLite Plugin
Posts: 6367
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Error regex - codelite v1.0.2304

Post by eranif »

Thanks, I will update it in SVN

Eran
Make sure you have read the HOW TO POST thread
Post Reply