Add a coding style section for Exceptions (#123)

This commit is contained in:
Matthew Koscumb 2019-09-24 20:21:17 -07:00 коммит произвёл Reiley Yang
Родитель 4041ed622f
Коммит 448c7709fc
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -154,6 +154,8 @@ C++ code
- If required by a platform (e.g, Microsoft COM), use the appropriate
ref-counted type, but do not expose those types to platform agnostic code,
prefer to use an abstraction.
- Exceptions
- All [user-declared destructors](https://en.cppreference.com/w/cpp/language/destructor) must be marked [noexcept](https://en.cppreference.com/w/cpp/language/noexcept_spec).
Python code
-----------