if (className == "decimal") // TODO: implement mechanism for walking over custom type fields
return S_OK;
- std::unordered_set<std::string> backedProperies;
+ std::unordered_set<std::string> backedProperties;
ULONG numFields = 0;
HCORENUM fEnum = NULL;
{
size_t endOffset = name.rfind('>');
name = name.substr(1, endOffset - 1);
- backedProperies.insert(name);
+ backedProperties.insert(name);
}
}
else
std::string name = to_utf8(propertyName/*, propertyNameLen*/);
- if (backedProperies.find(name) != backedProperies.end())
+ if (backedProperties.find(name) != backedProperties.end())
continue;
bool is_static = (getterAttr & mdStatic);