Skip to content

Commit c555d6f

Browse files
committed
Use std::optional if available.
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. The task NLAM-23 is about making this type configurable. This commit is a second part of the task: olp-cpp-sdk-write. Relates-To: NLAM-23 Signed-off-by: sopov <[email protected]>
1 parent 95a7eb4 commit c555d6f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

olp-cpp-sdk-dataservice-write/src/generated/ConfigApi.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,8 @@ class ConfigApi {
5151
* @param billing_tag An optional free-form tag which is used for grouping
5252
* billing records together. If supplied, it must be between 4 - 16
5353
* characters, contain only alpha/numeric ASCII characters [A-Za-z0-9].
54-
* @param callback
55-
* @param A callback function to invoke with the catalog configuration
56-
* response.
54+
* @param callback A callback function to invoke with the catalog
55+
* configuration response.
5756
*
5857
* @return The cancellation token.
5958
*/

0 commit comments

Comments
 (0)