https://bugs.llvm.org/show_bug.cgi?id=32729
Alexander Kornienko <[email protected]> changed:
What |Removed |Added
----------------------------------------------------------------------------
Resolution|--- |FIXED
CC| |[email protected]
Status|NEW |RESOLVED
--- Comment #1 from Alexander Kornienko <[email protected]> ---
Not reproducible now.
$ cat ~/Downloads/reduced\ \(1\).cc
enum class E : bool {
T = true,
F = false,
};
static void *f(E e) {
switch (e) {
case E::F:
return nullptr;
case E::T:
return nullptr;
}
}
$ ~/work/llvm-build/bin/clang-tidy -checks=* ~/Downloads/reduced\ \(1\).cc --
<nothing>
--
You are receiving this mail because:
You are on the CC list for the bug._______________________________________________
llvm-bugs mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs