Created C++ Limitations (markdown)

Baptiste Wicht 2013-11-03 11:47:01 -08:00
parent 80bed906b3
commit 8e5e44265f

9
C---Limitations.md Normal file

@ -0,0 +1,9 @@
As C++ is loaded using no standard library, a lot of features are not available:
* Exceptions
* RTTI
* Global static constructors and destructors are not called
* Most of the STL as they use standard library functions like memmove
Here are the features that are supported specifically:
* Dynamic Memory allocation via new and delete
* Dynamic Memory allocation with k_malloc and k_free directly