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
The following tests cause the xml converter to try to parse a value larger then a signed int32 max
<POI AchievementBit="2147483648" Type="mycategory" XPos="169.81" YPos="210.65" ZPos="215.83" MapID="50" /> <POI AchievementBit="4294967295" Type="mycategory" XPos="169.81" YPos="210.65" ZPos="215.83" MapID="50" />
The error is
terminate called after throwing an instance of 'std::out_of_range'
xml_converter should be able to gracefully handle this error as a linter error and not crash the entire program.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following tests cause the xml converter to try to parse a value larger then a signed int32 max
The error is
xml_converter should be able to gracefully handle this error as a linter error and not crash the entire program.
The text was updated successfully, but these errors were encountered: