Internals: Remove single-statement braces. No functional change.

This commit is contained in:
Wilson Snyder
2025-03-19 22:55:11 -04:00
parent 62afbed3cd
commit c508fd5d24
24 changed files with 39 additions and 37 deletions
+1 -1
View File
@@ -1024,7 +1024,7 @@ class CaptureVisitor final : public VNVisitor {
AstVar* getVar(AstVar* const varp) const {
const auto it = m_varCloneMap.find(varp);
if (it == m_varCloneMap.end()) { return nullptr; }
if (it == m_varCloneMap.end()) return nullptr;
return it->second;
}