]> granicus.if.org Git - file/commitdiff
Tweak C++ magic strength to avoid false positives.
authorReuben Thomas <rrt@sc3d.org>
Fri, 9 Dec 2011 08:02:16 +0000 (08:02 +0000)
committerReuben Thomas <rrt@sc3d.org>
Fri, 9 Dec 2011 08:02:16 +0000 (08:02 +0000)
magic/Magdir/c-lang

index f79b77f6acab3f6f690c74a09dcb5b6d4b9e5ec4..6de9f88538ef20b0ed22fbfa3374540635a5331b 100644 (file)
@@ -1,5 +1,5 @@
 #------------------------------------------------------------------------------
-# $File: c-lang,v 1.14 2009/09/19 16:28:08 christos Exp $
+# $File: c-lang,v 1.15 2011/12/08 12:12:46 rrt Exp $
 # c-lang:  file(1) magic for C and related languages programs
 #
 
 !:mime text/x-c
 
 # C++
-# The strength of these rules is doubled so they beat the C rules above
+# The strength of these rules is increased so they beat the C rules above
 0      regex   \^template      C++ source text
-!:strength * 2
+!:strength + 10
 !:mime text/x-c++
 0      regex   \^virtual               C++ source text
-!:strength * 2
+!:strength + 10
 !:mime text/x-c++
 0      regex   \^class         C++ source text
-!:strength * 2
+!:strength + 10
 !:mime text/x-c++
 0      regex   \^public:               C++ source text
-!:strength * 2
+!:strength + 10
 !:mime text/x-c++
 0      regex   \^private:              C++ source text
-!:strength * 2
+!:strength + 10
 !:mime text/x-c++
 
 # From: Mikhail Teterin <mi@aldan.algebra.com>