chore: format everything

This commit is contained in:
Tropical
2026-03-30 02:13:59 -05:00
parent 470ddf959d
commit c9b90cae2c
463 changed files with 12748 additions and 11285 deletions

View File

@@ -3,8 +3,7 @@
#include "BaseAttributeMap.h"
BaseAttributeMap::~BaseAttributeMap() {
for (auto it = attributesById.begin(); it != attributesById.end();
++it) {
for (auto it = attributesById.begin(); it != attributesById.end(); ++it) {
delete it->second;
}
}
@@ -23,8 +22,7 @@ AttributeInstance* BaseAttributeMap::getInstance(eATTRIBUTE_ID id) {
}
void BaseAttributeMap::getAttributes(std::vector<AttributeInstance*>& atts) {
for (auto it = attributesById.begin(); it != attributesById.end();
++it) {
for (auto it = attributesById.begin(); it != attributesById.end(); ++it) {
atts.push_back(it->second);
}
}