Template parms in compiler error msgs

  • Thread starter Thread starter Rudy Ray Moore
  • Start date Start date
R

Rudy Ray Moore

Compiler errors in template code (or function calls to template code) expand
the template parameters. This is proving to be obnoxious for me (hard to
get down to the second error).

Can I turn it off?
 
Thanks Steve,

In this particular case, the error was easy to identify and fix. My problem
is that it was difficult for me to get to the next error due to all the
verbose descriptions in the output window. Had to keep scrolling... and
scrolling... and scrolling...

or "pressing F4... and pressing F4... and pressing F4"

Rudy
 
Thanks Steve,

In this particular case, the error was easy to identify and fix. My problem
is that it was difficult for me to get to the next error due to all the
verbose descriptions in the output window. Had to keep scrolling... and
scrolling... and scrolling...

or "pressing F4... and pressing F4... and pressing F4"

For STL related errors, STLfilt improves matters:

http://www.bdsoft.com/tools/stlfilt.html

Otherwise, you just need to develop filtering eyesight. In principle
you could parse and filter the errors to remove the template parameter
lists, or perhaps reduce them. I nice tree view error widget where you
could expand and collapse errors and template parameters parameters
would be quite useful I think.

Tom
 
Back
Top