[LLVMbugs] [Bug 20375] New: __PRETTY_FUNCTION__ not pretty enough

bugzilla-daemon at llvm.org bugzilla-daemon at llvm.org
Sun Jul 20 15:54:06 PDT 2014


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

            Bug ID: 20375
           Summary: __PRETTY_FUNCTION__ not pretty enough
           Product: clang
           Version: unspecified
          Hardware: PC
                OS: All
            Status: NEW
          Severity: normal
          Priority: P
         Component: C++
          Assignee: unassignedclangbugs at nondot.org
          Reporter: richard-llvm at metafoo.co.uk
                CC: dgregor at apple.com, llvmbugs at cs.uiuc.edu
    Classification: Unclassified

Meyers' Effective Modern C++ Item 4 points out that our __PRETTY_FUNCTION__ is
less useful than that of GCC and MSVC, because we don't list the values of
deduced template arguments.

  GCC: void f(T &) [with T = const int]
  MSVC: void f<const int>(int &)
  Clang: void f(const int &)

-- 
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20140720/b4622c35/attachment.html>


More information about the llvm-bugs mailing list