This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
Re: Bugs in gcc 4.4 experimental c++0x libstdc++?
- From: "Germán Diago" <germandiago at gmail dot com>
- To: "Sebastian Redl" <sebastian dot redl at getdesigned dot at>
- Cc: libstdc++ at gcc dot gnu dot org
- Date: Fri, 16 May 2008 01:09:41 +0200
- Subject: Re: Bugs in gcc 4.4 experimental c++0x libstdc++?
- References: <b798010f0805151346n3d01b049p77c30928391c5100@mail.gmail.com> <482CA65E.5070105@getdesigned.at>
2008/5/15 Sebastian Redl <sebastian.redl@getdesigned.at>:
> Do you have a test case?
There is a simple test case attached which fails in the assertion.
#include <vector>
#include <cassert>
int main(int argc, char * argv[])
{
using namespace std;
vector<int> v;
v.push_back(3, 2, 4, 5, 8, 6);
assert(v.size() == 6);
}