Google C++ style guide’s No-exceptions rule; STL?

They say that they don’t use exceptions, not that nobody should use them. If you look at the rationale they also write:

Because most existing C++ code at Google is not prepared to deal with exceptions, it is comparatively difficult to adopt new code that generates exceptions.

The usual legacy problem. 🙁

Leave a Comment