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
Problems with parsing values where Cyrillic characters are present
Got a problem when parsing a file where the values of the keys are strings with Cyrillic characters
mini-yaml/yaml/Yaml.cpp
Line 1460 in 22d3dcf
The text was updated successfully, but these errors were encountered:
I have the same exception thrown when trying to use extended ASCII such as "à" or á etc Simply comment the for loop and it's working.
// Validate characters. // for (size_t i = 0; i < line.size(); i++) // { // if (line[i] != '\t' && (line[i] < 32 || line[i] > 255)) // { // throw ParsingException(ExceptionMessage(g_ErrorInvalidCharacter, lineNo, i + 1)); // } // }
Sorry, something went wrong.
No branches or pull requests
Problems with parsing values where Cyrillic characters are present
Got a problem when parsing a file where the values of the keys are strings with Cyrillic characters
mini-yaml/yaml/Yaml.cpp
Line 1460 in 22d3dcf
The text was updated successfully, but these errors were encountered: