From fda6097cf37ccef7d125b6fe998c2a6ad7421f96 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Mon, 25 Mar 2024 08:30:01 +0000 Subject: [PATCH] Ran clang-format --- src/vsg/app/CompileManager.cpp | 2 +- src/vsg/app/RecordAndSubmitTask.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/vsg/app/CompileManager.cpp b/src/vsg/app/CompileManager.cpp index 9df2e0796..9479875da 100644 --- a/src/vsg/app/CompileManager.cpp +++ b/src/vsg/app/CompileManager.cpp @@ -193,7 +193,7 @@ CompileResult CompileManager::compile(ref_ptr 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) { diff --git a/src/vsg/app/RecordAndSubmitTask.cpp b/src/vsg/app/RecordAndSubmitTask.cpp index 890e87f12..0fb44b8bb 100644 --- a/src/vsg/app/RecordAndSubmitTask.cpp +++ b/src/vsg/app/RecordAndSubmitTask.cpp @@ -293,10 +293,10 @@ void vsg::updateTasks(RecordAndSubmitTasks& tasks, ref_ptr compi } /// handle any new Bin needs - for (auto& [const_view, binDetails] : compileResult.views) + for (auto& [const_view, viewDetails] : compileResult.views) { auto view = const_cast(const_view); - for (auto& binNumber : binDetails.indices) + for (auto& binNumber : viewDetails.indices) { bool binNumberMatched = false; for (auto& bin : view->bins)