I have a C++ application that calls [SQLite][1]'s (SQLite is in C) [sqlite3_exec()][2] which in turn can call my callback function implemented in C++. SQLite is compiled into a static library.
If an exception escapes my callback will it propagate safely through the C code of SQLite to the C++ code calling sqlite3_exec()?
[1]: http://www.sqlite.org/
[2]: http://www.sqlite.org/c3ref/exec.html
以上就是Will C++ exceptions safely propagate through C code?的详细内容,更多请关注web前端其它相关文章!