-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
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
Don't throw exception of built-in types #33
Comments
I am facing the same issue discussed in #30. This is the very simple code I used: #include <iostream>
int main() {
std::cout << "Hello world" << std::endl;
return 0;
} And I slightly modified the exception handling in ifc-printer to be able to debug:
This is the stack trace in case it helps to fix the issue:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
During the review of #30 , @menuet correctly observed there is existing code that violated Core Guidelines E.14. That should have been caught before it was checked in. Upon further logic inspection, it looks like that the
Reader
constructor was detecting too late an erroneous condition. Move that detection earlier, at the very minimum, at the site of theReader
object construction.The text was updated successfully, but these errors were encountered: