We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mrpt/libs/core/src/exceptions.cpp
Line 95 in 6cf7cd2
This should be
const auto* ecb = dynamic_cast<const ExceptionWithCallBackBase*>(&e); if(ecb) { ret = ecb->originalWhat; } else { ret = e->what(); }
Since m_what is empty.
call exception_to_str
Line 105 in 78c8f30
Line 51 in 78c8f30
Line 100 in 78c8f30
mrpt/libs/core/include/mrpt/core/exceptions.h
Line 95 in 78c8f30
The text was updated successfully, but these errors were encountered:
Potential fix: https://github.com/jolting/mrpt/tree/infiniteExceptions
Sorry, something went wrong.
Wow!! Excellent finding.
Successfully merging a pull request may close this issue.
mrpt/libs/core/src/exceptions.cpp
Line 95 in 6cf7cd2
This should be
Since m_what is empty.
call exception_to_str
mrpt/libs/core/src/exceptions.cpp
Line 105 in 78c8f30
call impl_excep_to_str
mrpt/libs/core/src/exceptions.cpp
Line 51 in 78c8f30
call basic version
mrpt/libs/core/src/exceptions.cpp
Line 100 in 78c8f30
call e.what(), m_what is still empty
mrpt/libs/core/include/mrpt/core/exceptions.h
Line 95 in 78c8f30
repeat steps 1-4.
The text was updated successfully, but these errors were encountered: