public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/13658] New: [3.4 Regression] namespace association vs. templates part one
@ 2004-01-12 16:45 bkoz at gcc dot gnu dot org
  2004-01-12 17:38 ` [Bug c++/13658] " pinskia at gcc dot gnu dot org
                   ` (13 more replies)
  0 siblings, 14 replies; 15+ messages in thread
From: bkoz at gcc dot gnu dot org @ 2004-01-12 16:45 UTC (permalink / raw)
  To: gcc-bugs

#include <vector>

int main()
{
  // Should use vector specialization for swap, and does not.
  {
    std::vector<int> A;
    std::vector<int> B;
    std::swap(A, B); 
  }

  // Should use vector specialization for swap, and does.
  {
    using namespace std;
    vector<int> A;
    vector<int> B;
    swap(A, B); 
  }

  return 0;
}

-- 
           Summary: [3.4 Regression] namespace association vs. templates
                    part one
           Product: gcc
           Version: 3.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: bkoz at gcc dot gnu dot org
                CC: aoliva at redhat dot com,gcc-bugs at gcc dot gnu dot
                    org,jason at redhat dot com,rsandifo at redhat 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=13658


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

end of thread, other threads:[~2004-04-28  2:17 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-01-12 16:45 [Bug c++/13658] New: [3.4 Regression] namespace association vs. templates part one bkoz at gcc dot gnu dot org
2004-01-12 17:38 ` [Bug c++/13658] " pinskia at gcc dot gnu dot org
2004-01-15 14:42 ` cvs-commit at gcc dot gnu dot org
2004-01-15 17:45 ` aoliva at gcc dot gnu dot org
2004-01-25  3:16 ` [Bug c++/13658] [3.4/3.5 Regression] [testcase] " pinskia at gcc dot gnu dot org
2004-01-25 23:18 ` pinskia at gcc dot gnu dot org
2004-02-28  2:51 ` [Bug c++/13658] " mmitchel at gcc dot gnu dot org
2004-03-01 23:19 ` bkoz at gcc dot gnu dot org
2004-03-02  0:40 ` giovannibajo at libero dot it
2004-03-02  0:51 ` gdr at integrable-solutions dot net
2004-03-02  2:01 ` giovannibajo at libero dot it
2004-03-02  2:10 ` gdr at integrable-solutions dot net
2004-03-02  2:27 ` giovannibajo at libero dot it
2004-03-09  6:02 ` cvs-commit at gcc dot gnu dot org
2004-04-28  5:21 ` 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).