VS2005 C++ code analysis reporting non-errors

  • Thread starter Thread starter ajryan
  • Start date Start date
A

ajryan

When I build my native/unmanaged C++ ATL+MFC app with /analyze I
receive several errors like this:
Error 1 _com_issue_error (SY_FUNCTION), offset: 0 symbol

The project builds fine without /analyze

It looks like a dumb output parser is just looking for the substring
"error" in the /analyze output. Is that the case? Or are these real
errors?
 
ajryan said:
When I build my native/unmanaged C++ ATL+MFC app with /analyze I
receive several errors like this:
Error 1 _com_issue_error (SY_FUNCTION), offset: 0 symbol

The project builds fine without /analyze

It looks like a dumb output parser is just looking for the substring
"error" in the /analyze output. Is that the case? Or are these real
errors?

I believe that it really and truly is nothing more than a dumb (incredibly
dumb) output parser that's just looking for the word "error" in the output.

-cd
 
When I build my native/unmanaged C++ ATL+MFC app with /analyze I
receive several errors like this:
Error 1 _com_issue_error (SY_FUNCTION), offset: 0 symbol

The project builds fine without /analyze

Which version of VS2005 do you have? Have you by chance got a beta
version of SP1 installed?

.... I seem to recall a lot of strange output when I tried the analyse
option with the beta SP1 - haven't noticed any such problem with the
released SP1.

Dave
 
Back
Top