Internals: Use and enforce class final for ~5% performance boost.

This commit is contained in:
Wilson Snyder
2020-11-18 21:32:16 -05:00
parent c0888c1b0f
commit b6ded59c2b
224 changed files with 976 additions and 949 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ constexpr unsigned RELOOP_MIN_ITERS = 40; // Need at least this many loops to d
//######################################################################
class ReloopVisitor : public AstNVisitor {
class ReloopVisitor final : public AstNVisitor {
private:
// TYPES
typedef std::vector<AstNodeAssign*> AssVec;