http://llvm.org/bugs/show_bug.cgi?id=15311

Richard Smith <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #2 from Richard Smith <[email protected]> ---
In r175660. I've downgraded this from error to warning; we now produce:

<stdin>:2:20: warning: ISO C++11 requires a parenthesized pack declaration to
have a name [-Wanonymous-pack-parens]
void foo(void (*...)(Args))
                   ^


We still reject this case:

template <typename ...Args>
void foo(void (...)(Args));

Since we don't have final wording for core issue 1488 yet, it's not clear
whether this should be valid.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to