-
-
Notifications
You must be signed in to change notification settings - Fork 7
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
Added support for getting optional value #33 #34
Added support for getting optional value #33 #34
Conversation
src/Config.cpp
Outdated
|
||
if (value.index() == 0) | ||
{ | ||
throw std::runtime_error("Config key " + keyPath + " has value of nullptr."); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Return nullopt
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good job, one little change
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice!
Added
std::optional<T> getOptional<T>(const std::string& key)
for getting optional values.If key does not exist or is null it should return std::nullopt, otherwise value with type T it is castable to that