More Code Cleanup (#2192)

* Harmonizing ( and ) in function calls
* static const -> constexpr
* Fix compile issue
* Unify shader tab size
* Add _fs and _vs to shaders
* Harmonize spacing
This commit is contained in:
Alexander Bock
2022-07-26 11:22:41 +02:00
committed by GitHub
parent 9cc4c595a8
commit c1252902c7
223 changed files with 2359 additions and 3244 deletions

View File

@@ -702,7 +702,7 @@ void GlobeBrowsingModule::removeWMSServer(const std::string& name) {
}
// Then remove the calues from the globe server list
for (auto it = _urlList.begin(); it != _urlList.end(); ) {
for (auto it = _urlList.begin(); it != _urlList.end();) {
// We have to increment first because the erase will invalidate the iterator
const auto eraseIt = it++;