Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <jacques@blender.org>2020-07-03 15:20:42 +0300
committerJacques Lucke <jacques@blender.org>2020-07-03 15:20:42 +0300
commit5fbf70b0d0c5a387d01bba4b4d536d166e16ac0e (patch)
tree49b23dfe3d2181390c96ea58510bf510e0018da2 /source/blender/functions/intern/attributes_ref.cc
parentd64803f63b4311b0abb93542a907e97b47493e9f (diff)
Cleanup: use trailing underscore for non-public data members
Diffstat (limited to 'source/blender/functions/intern/attributes_ref.cc')
-rw-r--r--source/blender/functions/intern/attributes_ref.cc36
1 files changed, 18 insertions, 18 deletions
diff --git a/source/blender/functions/intern/attributes_ref.cc b/source/blender/functions/intern/attributes_ref.cc
index dc64f571596..047fa12adb4 100644
--- a/source/blender/functions/intern/attributes_ref.cc
+++ b/source/blender/functions/intern/attributes_ref.cc
@@ -21,50 +21,50 @@ namespace fn {
AttributesInfoBuilder::~AttributesInfoBuilder()
{
- for (uint i : m_defaults.index_range()) {
- m_types[i]->destruct(m_defaults[i]);
+ for (uint i : defaults_.index_range()) {
+ types_[i]->destruct(defaults_[i]);
}
}
void AttributesInfoBuilder::add(StringRef name, const CPPType &type, const void *default_value)
{
- if (m_names.add_as(name)) {
- m_types.append(&type);
+ if (names_.add_as(name)) {
+ types_.append(&type);
if (default_value == nullptr) {
default_value = type.default_value();
}
- void *dst = m_allocator.allocate(type.size(), type.alignment());
+ void *dst = allocator_.allocate(type.size(), type.alignment());
type.copy_to_uninitialized(default_value, dst);
- m_defaults.append(dst);
+ defaults_.append(dst);
}
else {
/* The same name can be added more than once as long as the type is always the same. */
- BLI_assert(m_types[m_names.index_of_as(name)] == &type);
+ BLI_assert(types_[names_.index_of_as(name)] == &type);
}
}
AttributesInfo::AttributesInfo(const AttributesInfoBuilder &builder)
{
- for (uint i : builder.m_types.index_range()) {
- StringRefNull name = m_allocator.copy_string(builder.m_names[i]);
- const CPPType &type = *builder.m_types[i];
- const void *default_value = builder.m_defaults[i];
+ for (uint i : builder.types_.index_range()) {
+ StringRefNull name = allocator_.copy_string(builder.names_[i]);
+ const CPPType &type = *builder.types_[i];
+ const void *default_value = builder.defaults_[i];
- m_index_by_name.add_new(name, i);
- m_name_by_index.append(name);
- m_type_by_index.append(&type);
+ index_by_name_.add_new(name, i);
+ name_by_index_.append(name);
+ type_by_index_.append(&type);
- void *dst = m_allocator.allocate(type.size(), type.alignment());
+ void *dst = allocator_.allocate(type.size(), type.alignment());
type.copy_to_uninitialized(default_value, dst);
- m_defaults.append(dst);
+ defaults_.append(dst);
}
}
AttributesInfo::~AttributesInfo()
{
- for (uint i : m_defaults.index_range()) {
- m_type_by_index[i]->destruct(m_defaults[i]);
+ for (uint i : defaults_.index_range()) {
+ type_by_index_[i]->destruct(defaults_[i]);
}
}