Miscellaneous¶
nullptr
¶
|
void f(int);
void f(int*);
f(NULL); // Hell!
f(nullptr); // f(int*)
|
Templates end with “>>
Ӧ
Small parser insufficiency got fixed …
std::map<int,vector<int> > ...;
std::map<int,vector<int>> ...; // C++11: THANK YOU!
⟶ It’s about time!