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

Kaelyn Uhrain <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |[email protected]
         Resolution|                            |FIXED

--- Comment #8 from Kaelyn Uhrain <[email protected]> 2012-06-18 19:33:06 CDT ---
Not sure when the format string warnings were improved, but as of r158689 clang
only warns on code like
    printf(_("some string"), ...);
if there are no additional arguments passed to printf (i.e. "printf(_("foo"),
4);" won't have the warning but just "printf(_("foo"));" will), and the warning
can be disabled entirely with -Wno-format-security.

-- 
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- 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