Fix ticket #642 (txx (template implementation files) not recognized/checked.)

http://sourceforge.net/apps/trac/cppcheck/ticket/642
This commit is contained in:
Reijo Tomperi 2009-09-03 23:04:38 +03:00
parent 2719724a97
commit a4190bc590
1 changed files with 2 additions and 1 deletions

View File

@ -103,7 +103,8 @@ bool FileLister::acceptFile(const std::string &filename)
extension == ".cxx" ||
extension == ".cc" ||
extension == ".c" ||
extension == ".c++")
extension == ".c++" ||
extension == ".txx")
{
return true;
}