public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/32440]  New: Lookup fails to find later function overload if template has been defined earlier
@ 2007-06-20 21:13 nicoara at roguewave dot com
  2007-06-20 21:17 ` [Bug c++/32440] " pinskia at gcc dot gnu dot org
  0 siblings, 1 reply; 2+ messages in thread
From: nicoara at roguewave dot com @ 2007-06-20 21:13 UTC (permalink / raw)
  To: gcc-bugs

The following:

$ cat t.cpp
template< typename T >
int
baz (T const*)
{
    return 0;
}

template <class T>
void
bar(T* ptr)
{
    baz (*ptr);
}

int 
baz (int const&) 
{ 
    return 0;
}

void
foo () 
{ 
    int const n = 0;
    bar (&n);
}

fails to compile with gcc 4.2.0:

$ g++ -v; g++ -c t.cpp
Using built-in specs.
Target: i686-pc-linux-gnu
Configured with: ../gcc-4.2.0/configure --prefix=/opt/compilers/gcc-4.2.0
--enable-threads --enable-shared --enable-languages=c,c++
Thread model: posix
gcc version 4.2.0
t.cpp: In function 'void bar(T*) [with T = const int]':
t.cpp:25:   instantiated from here
t.cpp:12: error: no matching function for call to 'baz(const int&)'

Moving "int baz (int const&)" to top, or removing top function template avoids
the error. 

It is possible that this issue may be somehow related to the issue reported in
the bug report 31816.

Thanks,
Liviu


-- 
           Summary: Lookup fails to find later function overload if template
                    has been defined earlier
           Product: gcc
           Version: 4.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: nicoara at roguewave dot com
 GCC build triplet: i686-pc-linux-gnu
  GCC host triplet: i686-pc-linux-gnu
GCC target triplet: i686-pc-linux-gnu


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32440


^ permalink raw reply	[flat|nested] 2+ messages in thread

* [Bug c++/32440] Lookup fails to find later function overload if template has been defined earlier
  2007-06-20 21:13 [Bug c++/32440] New: Lookup fails to find later function overload if template has been defined earlier nicoara at roguewave dot com
@ 2007-06-20 21:17 ` pinskia at gcc dot gnu dot org
  0 siblings, 0 replies; 2+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-06-20 21:17 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from pinskia at gcc dot gnu dot org  2007-06-20 21:17 -------
This is the way C++ works, yes before GCC 4.1.0, GCC did not work this way but
GCC was incorrect.

*** This bug has been marked as a duplicate of 2922 ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |DUPLICATE


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32440


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2007-06-20 21:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-06-20 21:13 [Bug c++/32440] New: Lookup fails to find later function overload if template has been defined earlier nicoara at roguewave dot com
2007-06-20 21:17 ` [Bug c++/32440] " pinskia at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).