Discussion about CodeLite development process and patches
-
remy
- CodeLite Curious
- Posts: 2
- Joined: Tue Nov 11, 2008 2:44 pm
-
Contact:
Post
by remy » Tue Nov 11, 2008 2:52 pm
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]+:?)
-
eranif
- CodeLite Plugin
- Posts: 6120
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
-
Contact:
Post
by eranif » Tue Nov 11, 2008 3:20 pm
Thanks, I will update it in SVN
Eran