You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, SDK requires C++11 minimum.
So, boost::optional type is used for optional values.
For C++17 and above more convenient is to use std::optional instead.
This PR makes the optional type used configurable.
Relates-To: NLAM-23
Signed-off-by: sopov <ext-alexander.sopov@here.com>
The SDK uses `boost::optional` for optional members, parameters, or return types. Also, function comments should indicate whether the parameter is optional or required.
260
+
The SDK uses `olp::porting::optional` mapped to either `boost::optional` or `std::optional` for optional members,
261
+
parameters, or return types. Also, function comments should indicate whether the parameter is optional or required.
0 commit comments