T O P I C R E V I E W |
Esone |
Posted - May 08 2007 : 05:20:01 AM void someFun1() { using someSymbol; }
void someFun2() { }
In this snippet, VA Outline treats someFun2 as sub-item of someFun1. |
6 L A T E S T R E P L I E S (Newest First) |
support |
Posted - May 30 2007 : 11:59:48 PM fixed in build 1557 |
feline |
Posted - May 09 2007 : 08:42:40 AM This is what I am expecting to happen, certainly using statements inside functions showing up looks like an error to me. |
Esone |
Posted - May 08 2007 : 1:43:38 PM quote: Originally posted by holedigger
Esone, do you want to see using statements within functions? I'm inclined to remove these from the tree.
I think that we should see nothing inside the functions, since it is not any informative. I guess that now we see "using" statements inside functions because of the already submitted error, and it will be fixed.
Right, feline? |
holedigger |
Posted - May 08 2007 : 1:22:17 PM Esone, do you want to see using statements within functions? I'm inclined to remove these from the tree. |
feline |
Posted - May 08 2007 : 08:38:38 AM The first post, I am seeing the same thing
case=6454
The second post, this looks like a combination of case=6452 and case=6454
The using statement not being shown, I would say that is correct, since normally Live Outline does not show me things inside functions. |
Esone |
Posted - May 08 2007 : 06:02:19 AM Another snippet:
namespace someNamespace { void someFun0() { { using std::string; } }
void someFun1() { } }
void someFun2() { }
Here 3 issues: 1) using is not displayed in VA Outline 2) VA Outline treats sumFun1 as a sub-item of sumFun0 3) VA Outline treats sumFun2 as a member of someNamespace |