Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-12-31 11:06:51 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-12-31 11:06:51 +0400
commitc9d16fd22cb55666225044604d2da3c4156de4ae (patch)
treefb6c9585943a596fac43d2b4ef8659cd022f3633 /source/tests
parent827f9aa737e32cbb962864c25fa7ede88ccd99c5 (diff)
add ".hh" as an extension for source scripts.
Diffstat (limited to 'source/tests')
-rw-r--r--source/tests/check_deprecated.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/tests/check_deprecated.py b/source/tests/check_deprecated.py
index c5c7bdcdcb0..bb9fcd818d2 100644
--- a/source/tests/check_deprecated.py
+++ b/source/tests/check_deprecated.py
@@ -31,12 +31,12 @@ SKIP_DIRS = ("extern",
def is_c_header(filename):
ext = splitext(filename)[1]
- return (ext in (".h", ".hpp", ".hxx"))
+ return (ext in {".h", ".hpp", ".hxx", ".hh"})
def is_c(filename):
ext = splitext(filename)[1]
- return (ext in (".c", ".cpp", ".cxx", ".m", ".mm", ".rc", ".cc", ".inl"))
+ return (ext in {".c", ".cpp", ".cxx", ".m", ".mm", ".rc", ".cc", ".inl"})
def is_c_any(filename):