Merge branch 'feature/cpp_exceptions_example' into 'master'

examples: add C++ exception handling example

See merge request idf/esp-idf!3178
This commit is contained in:
Ivan Grokhotkov
2018-09-07 10:34:18 +08:00
7 changed files with 142 additions and 0 deletions
+1
View File
@@ -119,4 +119,5 @@ Enabling exception handling normally increases application binary size by a few
If an exception is thrown, but there is no ``catch`` block, the program will be terminated by ``abort`` function, and backtrace will be printed. See :doc:`Fatal Errors <fatal-errors>` for more information about backtraces.
See :example:`system/cpp_exceptions` for an example of C++ exception handling.