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: [email protected]
          Reporter: [email protected]
                CC: [email protected], [email protected]
    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.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to