mirror of
https://github.com/verilator/verilator.git
synced 2026-09-02 18:58:51 +02:00
Internals: Remove single-statement braces. No functional change.
This commit is contained in:
+1
-1
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user