Skip to content

Commit f302b42

Browse files
committed
Fix C++ type detection
A C++ type can't be followed by `::`, e.g. we should never match `Foo` in `Foo::Bar` as a type. Fixes commit 84ec80f ("Detect C++ style types"). Closes #79
1 parent 3003a1d commit f302b42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

checkpatch.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -598,7 +598,7 @@ sub find_standard_signature {
598598
qr{${Ident}_f},
599599
qr{${Ident}_fn},
600600
qr{${Ident}_cb},
601-
qr{(?:::)?(?:[A-Z][a-z][A-Za-z\d]*::)*[A-Z][a-z][A-Za-z\d]*},
601+
qr{(?:::)?(?:[A-Z][a-z][A-Za-z\d]*::)*[A-Z][a-z][A-Za-z\d]*(?!::)},
602602
@typeListMisordered,
603603
);
604604

0 commit comments

Comments
 (0)