This change parses type usages in function and method bodies and saves them with an edge of type EDGE_TYPE_USAGE. This also includes base class types used in initialization lists of derived class constructors.
12 lines
87 B
C++
12 lines
87 B
C++
typedef unsigned int uint;
|
|
|
|
class G
|
|
{};
|
|
|
|
class H
|
|
: public G
|
|
{
|
|
private:
|
|
int width;
|
|
};
|