Skip to content

Commit fda6097

Browse files
committed
Ran clang-format
1 parent fd893cb commit fda6097

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/vsg/app/CompileManager.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ CompileResult CompileManager::compile(ref_ptr<Object> object, ContextSelectionFu
193193
result.views[view].add(viewDetailsStack.top());
194194
if (view->viewDependentState)
195195
{
196-
for(auto& sm : view->viewDependentState->shadowMaps)
196+
for (auto& sm : view->viewDependentState->shadowMaps)
197197
{
198198
if (sm.view)
199199
{

src/vsg/app/RecordAndSubmitTask.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -293,10 +293,10 @@ void vsg::updateTasks(RecordAndSubmitTasks& tasks, ref_ptr<CompileManager> compi
293293
}
294294

295295
/// handle any new Bin needs
296-
for (auto& [const_view, binDetails] : compileResult.views)
296+
for (auto& [const_view, viewDetails] : compileResult.views)
297297
{
298298
auto view = const_cast<View*>(const_view);
299-
for (auto& binNumber : binDetails.indices)
299+
for (auto& binNumber : viewDetails.indices)
300300
{
301301
bool binNumberMatched = false;
302302
for (auto& bin : view->bins)

0 commit comments

Comments
 (0)