This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c++/12330] New: g++ 3.3.1 compiler problem - std::allocator<char>::allocator[in-charge]()


PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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

           Summary: g++ 3.3.1 compiler problem -
                    std::allocator<char>::allocator[in-charge]()
           Product: gcc
           Version: 3.3.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: sgowda at orga-systems dot com
                CC: gcc-bugs at gcc dot gnu dot org

Hi,

After installing gcc 3.3.1, our sources failed to complire. Here is a similar 
example. this was never the case with gcc 3.2. Any help(patch?) is appreciated.

thank you!

//Shiva


sgowda@tuxedo<198> sizer -v
Compaq Tru64 UNIX V5.1 (Rev. 732); Fri Jul 11 14:36:24 MEST 2003
sgowda@tuxedo<199> g++ --version
g++ (GCC) 3.3.1
...
sgowda@tuxedo<200> cat foo.cc
#include <string>
#include <iostream>
#include <vector>

void f(const std::string &foo)
{
}

int
main(int argc, char *argv[])
{
        f("bla");
        return(0);
}
sgowda@tuxedo<201> g++ foo.cc
std::allocator<char>::allocator[in-charge]()
collect2: ld returned 1 exit status
sgowda@tuxedo<202>


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]