Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Robadob committed Aug 31, 2022
1 parent f802369 commit 927ef37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/flamegpu/visualiser/PanelVis.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ PanelVis::PanelVis(std::shared_ptr<PanelConfig> _m, std::shared_ptr<EnvironmentD
: env_properties(_environment->getPropertiesMap()) // For some reason this method returns a copy, not a reference
, m(std::move(_m)) {
// Rebuild added_properties
for (const auto &element: m->ui_elements) {
for (const auto &element : m->ui_elements) {
if (const EnvPropertyElement* p = dynamic_cast<EnvPropertyElement*>(element.get())) {
added_properties.insert({p->name, p->index});
}
Expand Down

0 comments on commit 927ef37

Please sign in to comment.