Internals: Cleanup spacing of Vi for loops.

This commit is contained in:
Wilson Snyder
2022-10-15 18:47:10 -04:00
parent c0739e908c
commit 3cd2c8532d
5 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -866,7 +866,7 @@ void EmitCSyms::emitSymImp() {
if (v3Global.dpi()) {
m_ofpBase->puts("// Setup export functions\n");
m_ofpBase->puts("for (int __Vfinal=0; __Vfinal<2; __Vfinal++) {\n");
m_ofpBase->puts("for (int __Vfinal = 0; __Vfinal < 2; ++__Vfinal) {\n");
for (auto it = m_scopeFuncs.begin(); it != m_scopeFuncs.end(); ++it) {
AstScopeName* const scopep = it->second.m_scopep;
AstCFunc* const funcp = it->second.m_cfuncp;