build with Clang's -Wimplicit-fallthrough warning enabled. The fallthrough
was not making this code better.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@183952
91177308-0d34-0410-b5e6-
96231b3b80d8
case PriorTemplateArgumentSubstitution:
case DefaultTemplateArgumentChecking:
- if (X.Template != Y.Template)
- return false;
-
- // Fall through
+ return X.Template == Y.Template && X.TemplateArgs == Y.TemplateArgs;
case DefaultTemplateArgumentInstantiation:
case ExplicitTemplateArgumentSubstitution: