Show correct type in case a typecast has taken place.

This commit is contained in:
Rene Gollent 2013-05-21 17:37:50 -04:00
parent e312ed26ef
commit 325f7bb4ec

View File

@ -175,6 +175,9 @@ public:
Type* GetType() const
{
if (fCastedType != NULL)
return fCastedType;
return fNodeChild->GetType();
}