Use snake case in cpp consistently

This commit is contained in:
Andrej730
2026-08-19 19:16:07 +05:00
parent 104591a80b
commit fa9a3383aa
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -3534,14 +3534,14 @@ template void IFC_PARSE_API express::base::set_attribute_value<std::vector<std::
namespace express {
template <typename T>
T Entity::get_value(const std::string& name) const {
T entity::get_value(const std::string& name) const {
auto attr = get(name);
T v = attr;
return v;
}
template <typename T>
T Entity::get_value(const std::string& name, const T& default_value) const {
T entity::get_value(const std::string& name, const T& default_value) const {
auto attr = get(name);
if (attr.isNull()) {
return default_value;