Re: Some C++0x experiments

2006-06-15 Thread Manuel López-Ibáñez
(We should really update contribute.html to explicitly said what must be done) Hi Pedro, as far as I know, you just need to email [EMAIL PROTECTED] and request "a personal copyright assignment for GCC". You'll need to include your physical mailing address so they can send some forms to you. They

Re: Some C++0x experiments

2006-06-14 Thread Pedro Lamarão
Mike Stump escreveu: > On Jun 9, 2006, at 6:31 PM, Pedro Lamarão wrote: >> Currently I have implemented in g++ the "Static Assertions" and the >> "Right Angle Brackets" C++0x features in g++. Those are the simplest >> ones that got into the working draft > >> Any feedback is welcome! > > Well, I

Re: Some C++0x experiments

2006-06-10 Thread Howard Hinnant
On Jun 9, 2006, at 9:31 PM, Pedro Lamarão wrote: Any feedback is welcome! Thank you! -Howard

Re: Some C++0x experiments

2006-06-09 Thread Mike Stump
On Jun 9, 2006, at 6:31 PM, Pedro Lamarão wrote: Currently I have implemented in g++ the "Static Assertions" and the "Right Angle Brackets" C++0x features in g++. Those are the simplest ones that got into the working draft Any feedback is welcome! Well, I hope that you are able to do up the

Re: Some C++0x experiments

2006-06-09 Thread Andrew Pinski
Some small suggestion for the testsuite: This: +BOOST_STATIC_ASSERT(sizeof(a1) == sizeof(a2)); // { dg-error "" } Should be: +BOOST_STATIC_ASSERT(sizeof(a1) == sizeof(a2)); // { dg-error "sizeof (a1) == sizeof(a2)" } So that it does just error out that static_assert is not defined. -- Pinsk

Some C++0x experiments

2006-06-09 Thread Pedro Lamarão
I've been doing some experimenting with gcc, more specifically to g++, and finally got something to actually work. Currently I have implemented in g++ the "Static Assertions" and the "Right Angle Brackets" C++0x features in g++. Those are the simplest ones that got into the working draft, or so I