You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
auto result = userData.insert(std::pair<uint32_t, ParsingHelper>(hash_fnv1a(element.name + property.name), helper));
528
-
if (result.second == false) throwstd::invalid_argument("element-property key has already been requested: " + hash_fnv1a(element.name + property.name));
527
+
if (result.second == false)
528
+
{
529
+
throwstd::invalid_argument("element-property key has already been requested: " + hash_fnv1a(element.name + property.name));
530
+
}
529
531
}
530
532
elsethrowstd::invalid_argument("one of the property keys was not found in the header: " + key);
531
533
}
@@ -556,7 +558,7 @@ void PlyFile::PlyFileImpl::add_properties_to_element(const std::string & element
0 commit comments