ylss
Starting Member
1 Posts |
Posted - Aug 09 2012 : 11:02:38 PM
|
VAX 1906 has the following bug: Appeared on Visual Studio 2010 SP1, Windows XP 32bit Professional.
How to repeat:
Create an empty C++ souce file and write the following function(it is valid for no compile error):
bool function(int) try { // ... return true; } catch (const std::exception& e) { //... return false; } catch (...) { return false; }
The "catch (...)" line is considered as a function by VA outline, and is displayed as a normal function. Moreover, if there are many catch clauses, all the "catch"es are treated as function!
Please fix it, thanks. |
|