From e7e28955733f60baf8b29bb4ef49533c86f3f1b7 Mon Sep 17 00:00:00 2001 From: Julian Smith Date: Sat, 12 Dec 2020 12:03:41 +0000 Subject: [PATCH] src/Model/modelmgr.cxx: fixed minor clang warning about indentation. --- src/Model/modelmgr.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Model/modelmgr.cxx b/src/Model/modelmgr.cxx index 14a9ad2c3..d43cac448 100644 --- a/src/Model/modelmgr.cxx +++ b/src/Model/modelmgr.cxx @@ -284,8 +284,8 @@ FGModelMgr::Listener::childRemoved(SGPropertyNode * parent, SGPropertyNode * chi return; // search instance by node and remove it from scenegraph - std::vector::iterator it = _mgr->_instances.begin(); - std::vector::iterator end = _mgr->_instances.end(); + std::vector::iterator it = _mgr->_instances.begin(); + std::vector::iterator end = _mgr->_instances.end(); for (; it != end; ++it) { Instance *instance = *it;