re PR c++/79064 (Cannot overload member function templates on type of literal)
PR c++/79064 * g++.dg/template/overload15.C (f): Use 0u - 1ll instead of 0u - 1l. From-SVN: r257818
This commit is contained in:
parent
14cf3c00ea
commit
bb08d1cac1
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2018-02-19 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR c++/79064
|
||||
* g++.dg/template/overload15.C (f): Use 0u - 1ll instead of 0u - 1l.
|
||||
|
||||
2018-02-19 Thomas Koenig <tkoenig@gcc.gnu.org>
|
||||
|
||||
PR fortran/35339
|
||||
|
|
|
@ -5,7 +5,7 @@ template <unsigned N>
|
|||
void f (char (*)[0u - 1 > N ? 1 : 7]);
|
||||
|
||||
template <unsigned N>
|
||||
void f (char (*)[0u - 1l > N ? 1 : 7]);
|
||||
void f (char (*)[0u - 1ll > N ? 1 : 7]);
|
||||
|
||||
void f ()
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue