[llvm-bugs] [Bug 45969] New: clang-cl template auto name mangling

via llvm-bugs llvm-bugs at lists.llvm.org
Mon May 18 02:33:15 PDT 2020


https://bugs.llvm.org/show_bug.cgi?id=45969

            Bug ID: 45969
           Summary: clang-cl template auto name mangling
           Product: clang
           Version: 10.0
          Hardware: PC
                OS: Windows XP
            Status: NEW
          Severity: normal
          Priority: P
         Component: C++2a
          Assignee: unassignedclangbugs at nondot.org
          Reporter: b.thiel at abberior-instruments.com
                CC: blitzrakete at gmail.com, erik.pilkington at gmail.com,
                    llvm-bugs at lists.llvm.org, richard-llvm at metafoo.co.uk

clang-cl cannot compile simple template auto code:

template< auto Value_ >
struct Default
{
  Default()
  { }
} ;

int main()
{
  Default< false > d_false ;
  Default< 0 > d_zero ;

  return 0 ;
}

-- 
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/20200518/75bb973f/attachment.html>


More information about the llvm-bugs mailing list