Hacker News new | ask | show | jobs
by vinkelhake 4510 days ago
The Google C++ style guide has its quirks, but describing it as "C with classes" is flat out wrong.

> no boost

Not true, select parts of Boost are available.

> no lambda

The C++11 features are being rolled in gradually. Lambda expressions are now permitted.

> no rtti

The guide says "avoid RTTI" and urges the developer to come up with a different design. This is very much in line with C++ best practice overall. There's no ban on RTTI.

1 comments

Version 3.274 says:

Do not use lambda expressions, or the related std::function or std::bind utilities.

It's unfortunately not synched with the internal version.