1
0
Fork 0

Revert "Added a BasicStyleCheck for virtual functions without override keyword."

This reverts commit a800b5bd9f.
This commit is contained in:
Mattes D 2016-08-13 10:22:41 +02:00
parent a800b5bd9f
commit 6a6f0fb9e4
1 changed files with 0 additions and 2 deletions

View File

@ -203,8 +203,6 @@ local g_ViolationPatterns =
-- We don't like "Type const *" and "Type const &". Use "const Type *" and "const Type &" instead:
{"const %&", "Use 'const Type &' instead of 'Type const &'"},
{"const %*", "Use 'const Type *' instead of 'Type const *'"},
{"virtual [^~]*%(.*%)%s*;%s*$", "Virtual function without override keyword"},
}