Props changes: fix a link error with Clang

This commit is contained in:
James Turner 2021-05-24 12:39:42 +01:00
parent e91c06223a
commit 8d0d1f9047

View File

@ -4329,6 +4329,8 @@ template bool SGPropertyNode::setValue(const SGVec3<double>&, void*);
template bool SGPropertyNode::setValue(const SGVec4<double>&, void*);
template std::vector<float> SGPropertyNode::getChildValues(const std::string& name) const;
template std::vector<float> SGPropertyNode::getChildValues<float, float>(const std::string& name) const;
template std::vector<unsigned char> SGPropertyNode::getChildValues<unsigned char, int>(const std::string& name) const;
template bool SGPropertyNode::tie(const SGRawValue<bool> &rawValue, bool useDefault);