Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
current (nightly)
-
None
-
None
-
All
Description
ExtencibilityQuery test fails to compile because the getter/ setter name is incorrect.
In ExtencibilityType.hpp, method declaration is as follows:
AnyType* getany1();
void setany1(AnyType* InValue);
But in ExtencibilityType.cpp, the identifier is wrong.
AnyType* ExtensibilityType::getany() <------------- wrong identifier (should be getany1())
{
return any1 ;
}
void ExtensibilityType::setany(AnyType* InValue) <----------------- wrong identifier (should be setany1)
{
any1 = InValue ;
}