summaryrefslogtreecommitdiff
path: root/src/rules/final.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/rules/final.cpp')
-rw-r--r--src/rules/final.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/rules/final.cpp b/src/rules/final.cpp
index 7e4d661..a3ef501 100644
--- a/src/rules/final.cpp
+++ b/src/rules/final.cpp
@@ -24,6 +24,12 @@ registerRuleExt(finalCheck, "007", "(.+)[.](cpp|h)")
startRule(finalCheck)
{
+ if (strEndWith(file, "debug/debug_new.cpp")
+ || strEndWith(file, "debug/fast_mutex.h")
+ || strEndWith(file, "debug/debug_new.h"))
+ {
+ terminateRule();
+ }
}
endRule(finalCheck)