You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Instead of calling exit() on an error, can't you just set a flag or something and leave it up to the programmer to decide what to do?
Something like this:
elf_parser::Elf_parser elf_parser(file);
if (!elf_parser.success()) return1;
The text was updated successfully, but these errors were encountered:
Instead of calling exit() on an error, can't you just set a flag or something and leave it up to the programmer to decide what to do?
Something like this:
The text was updated successfully, but these errors were encountered: