Skip to content
Snippets Groups Projects
Commit 29c5c6d7 authored by Tobias Leibner's avatar Tobias Leibner
Browse files

[exceptions.bindings] fix headercheck

parent 2f249a8d
No related branches found
No related tags found
No related merge requests found
......@@ -50,7 +50,7 @@ void addbind_exceptions(pybind11::module& m)
dune_exc(e.what());
#if HAVE_TBB
} catch (const tbb::tbb_exception& e) {
tbb_exc(std::string(e.name() + ": " + e.what()).c_str());
tbb_exc((std::string(e.name()) + ": " + e.what()).c_str());
#endif
} catch (const std::exception& e) {
std_exc(e.what());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment