Hi:
I'm using mingc g++ c compiler and I have realized it sometimes gives messages like this:
(file: line: col => regex=%f:%l:%c)
Plot.cpp:7:19: warning: extra tokens at end of #include directive
And other times like this:
(file: line => regex=%f:%l)
Plot.cpp:13: parse error before `--' token
So I have to use a regex for both cases.
If I try %f:%l: in the first case would fail (returns file=plot.cpp:7).
If I try %f:%l:%c: will fail in the second one (nothing is returned)
If I try %f:%l:(%c:)?, will fail as %f:%l with the first case....
any idea?
Thanks...