https://llvm.org/bugs/show_bug.cgi?id=18561
Nick Lewycky <nicho...@mxc.ca> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |nicho...@mxc.ca Resolution|--- |FIXED --- Comment #1 from Nick Lewycky <nicho...@mxc.ca> --- It's -Wcomma in clang. $ llvm-commit/build/bin/clang pr18561.cc -Wcomma -fsyntax-only pr18561.cc:4:20: warning: possible misuse of comma operator here [-Wcomma] return (f() && a), 1; ^ pr18561.cc:4:10: note: cast expression to void to silence warning return (f() && a), 1; ^~~~~~~~~~ static_cast<void>( ) 1 warning generated. -- You are receiving this mail because: You are on the CC list for the bug.
_______________________________________________ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs