Skip to content

Commit

Permalink
Ran clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
robertosfield committed Mar 25, 2024
1 parent fd893cb commit fda6097
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/vsg/app/CompileManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ CompileResult CompileManager::compile(ref_ptr<Object> object, ContextSelectionFu
result.views[view].add(viewDetailsStack.top());
if (view->viewDependentState)
{
for(auto& sm : view->viewDependentState->shadowMaps)
for (auto& sm : view->viewDependentState->shadowMaps)
{
if (sm.view)
{
Expand Down
4 changes: 2 additions & 2 deletions src/vsg/app/RecordAndSubmitTask.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -293,10 +293,10 @@ void vsg::updateTasks(RecordAndSubmitTasks& tasks, ref_ptr<CompileManager> compi
}

/// handle any new Bin needs
for (auto& [const_view, binDetails] : compileResult.views)
for (auto& [const_view, viewDetails] : compileResult.views)
{
auto view = const_cast<View*>(const_view);
for (auto& binNumber : binDetails.indices)
for (auto& binNumber : viewDetails.indices)
{
bool binNumberMatched = false;
for (auto& bin : view->bins)
Expand Down

0 comments on commit fda6097

Please sign in to comment.