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

[email protected] changed:

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

--- Comment #1 from [email protected] ---
(In reply to comment #0)
> Is there a reason why a 64-bit 'long' value cannot unambiguously match
> std::int64_t?

When std::int64_t is defined as long long, the compiler cannot decide between
"foo(int)" and "foo(long long)". Use the macro INT64_C to create a constant of
type std::int64_t, e.g.

  INT64_C(123)

I'm closing this report because I don't think it's a bug. Please feel free to
reopen if you disagree.

-- 
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