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
No newlines in output string.
Compile example below with Visual Studio 2022 for x86
Expected :
Hello World
Actual : Hello World (space instead of newline)
json main_json; main_json["newlines"] = "Hello\nWorld!"; std::cout << main_json.dump() << std::endl;// -> "Hello\\nWorld" std::cout << main_json["newlines"] << std::endl;// -> "Hello World"
### Error messages ```Shell No
Visual Studio 2022 Win10 sdk latest
6325839
develop
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
No newlines in output string.
Reproduction steps
Compile example below with Visual Studio 2022 for x86
Expected vs. actual results
Expected :
Actual :
Hello World
(space instead of newline)Minimal code example
Compiler and operating system
Visual Studio 2022 Win10 sdk latest
Library version
6325839
Validation
develop
branch is used.The text was updated successfully, but these errors were encountered: