summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid A. Wheeler <dwheeler@dwheeler.com>2013-09-02 19:59:22 -0400
committerDavid A. Wheeler <dwheeler@dwheeler.com>2013-09-02 19:59:22 -0400
commit730beaf806826fca27f18461bc346618ba32612a (patch)
tree4940839ad571bdd5ec558b019a592efc86f0ad6d
parenta39f7af19f788e5dd6159d532a8dc6eaa4539759 (diff)
downloadsloccount-git-730beaf806826fca27f18461bc346618ba32612a.tar.gz
Allow ".mm" for Objective-C [by Martin Häcker]
- Accept ".mm" as another Objective-C extension - See: https://sourceforge.net/p/sloccount/patches/13/
-rwxr-xr-xbreak_filelist1
1 files changed, 1 insertions, 0 deletions
diff --git a/break_filelist b/break_filelist
index 3ce65a3..2e4dfce 100755
--- a/break_filelist
+++ b/break_filelist
@@ -156,6 +156,7 @@ $noisy = 0; # Set to 1 if you want noisy reports.
"C" => "cpp", "cpp" => "cpp", "cxx" => "cpp", "cc" => "cpp",
"pcc" => "cpp", # Input to Oracle C++ preproc.
"m" => "objc",
+ "mm" => "objc",
# C# (C-sharp) is named 'cs', not 'c#', because
# the '#' is a comment character and I'm trying to
# avoid bug-prone conventions.