WIP: Fixed a test issue with the PCellDeclarationHelper external class.

This commit is contained in:
Matthias Koefferlein 2018-06-20 16:26:54 +02:00
parent 436550868b
commit ec0fad0d75
1 changed files with 7 additions and 0 deletions

View File

@ -844,6 +844,13 @@ public:
return true;
}
virtual bool can_upcast (const void *) const
{
// It does not make sense to upcast-check vs. an external class
// An external class is only provided as a stub.
return false;
}
private:
std::string m_category;
};