andreasfertig / cppinsights

C++ Insights - See your source code with the eyes of a compiler
https://cppinsights.io
MIT License
4.11k stars 243 forks source link

noexcept for member functions not generating try...catch #454

Closed andijcr closed 2 years ago

andijcr commented 2 years ago

example

shouldn't noexcept on a member function generate the same implicit try ... catch block, as it happens for a free function, or it's just a case of clang not doing it?

andreasfertig commented 2 years ago

Hello @andijcr,

thanks for reporting this. My apologies. This is a bug in my implementation. I left the member function case out. A fix is on its way.

Andreas