-
-
Notifications
You must be signed in to change notification settings - Fork 6.8k
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
Error Code Return #1386
Comments
If you don't know if the keys you are looking for are there, you either need to check first, using things like |
If you don't want to do exception handling, then you have to do:
|
Thanks, I understand the implementation better now. |
json jProfile;
std::ifstream f(profileFile);
f >> jProfile;
jProfile.at("CONFIG").at(std::to_string(1)).get_to(configFileName);
The text was updated successfully, but these errors were encountered: