c++ support

I'm new to Arduino, what c++ features does Arduino support ? From reading the project source code I can tell that classes, namespace are supported, I looked up avr-libc and it only has library references but not language references.

Cheers!

No rtti, I think is the main one.

It's a variant of the g++ compiler. So all modern C++ features are supported. Operators new and delete are not implemented out of the box, but you can add them in with 3 lines of code (calling malloc/free).

Thanks Nick, now I can look at the g++ doc for references.