Here is the problematic line:
/home/obfuscated/projects/codeblocks/dev/debugger2/src/plugins/debuggergdb/debuggergdb_test_backtrace.cpp:255:5: instantiated from here
The problem is that the line is parsed as 5 instead of 255.
Where and how should this be fixed?
Quote from: oBFusCATed on May 14, 2011, 01:01:04 PM
Where and how should this be fixed?
For testing, "online" in the advanced compiler options (no compilation needed), then adjust the regex in the related compiler's cpp file.
Should I add new regex or modify an existing one?
Seems adding new one is the only way (my regex-fu is limited).
Quote from: oBFusCATed on May 14, 2011, 01:52:24 PM
Should I add new regex or modify an existing one?
Seems adding new one is the only way (my regex-fu is limited).
Nope, adding a new one would not work, as one error would be handled twice, one time correct and one time incorrect.
You have to modify the one in question and let it support both variants.
Quote from: MortenMacFly on May 14, 2011, 01:58:38 PM
Nope, adding a new one would not work, as one error would be handled twice, one time correct and one time incorrect.
Hm, I think I can add new version which will match correctly only the 255:5: version.
Quote from: MortenMacFly on May 14, 2011, 01:58:38 PM
You have to modify the one in question and let it support both variants.
I can't do this, I've tried but failed. Any help here will highly be appreciated.