(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
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
On Jun 9, 2006, at 9:31 PM, Pedro Lamarão wrote:
Any feedback is welcome!
Thank you!
-Howard
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
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