Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
Improving software quality using Visual Studio 11 C++ Code Analysis
Dec 30, 2011 at 12:24 PMI really liked the new features of CA in VC11, specially the new annotation _Guarded_by_
The new-view, detailed explanation and filtering feature is also excellent improvement!
And the greatest thing MS is doing - giving CA to everyone for the software eco-system. Kudos!
Now, few of my concerns, which I can think of now:
void Copy(_In_ char*); void Copy(_In_opt_ char* p) { *p=0; }Here, compiler sees first prototype, and records it. There is a warning of nullptr is passed, but no warning in function implementation, where pointer is used without null check!