Skip to content

Commit a3e28c9

Browse files
committed
Fix docstrings.
1 parent 653e451 commit a3e28c9

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

components/core/src/clp_s/log_converter/CommandLineArguments.cpp

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,14 @@ constexpr std::string_view cS3Auth{"s3"};
3838
std::vector<std::string>& path_destination
3939
) -> bool;
4040

41+
/**
42+
* Validates and populates network authorization options.
43+
* @param auth_method
44+
* @param auth
45+
* @throws std::invalid_argument if the authorization option is invalid
46+
*/
47+
void validate_network_auth(std::string_view auth_method, NetworkAuthOption& auth);
48+
4149
auto read_paths_from_file(
4250
std::string const& input_path_list_file_path,
4351
std::vector<std::string>& path_destination
@@ -73,12 +81,6 @@ auto read_paths_from_file(
7381
return true;
7482
}
7583

76-
/**
77-
* Validates and populates network authorization options.
78-
* @param auth_method
79-
* @param network_auth
80-
* @throws std::invalid_argument if the authorization option is invalid
81-
*/
8284
void validate_network_auth(std::string_view auth_method, NetworkAuthOption& auth) {
8385
if (cS3Auth == auth_method) {
8486
auth.method = AuthMethod::S3PresignedUrlV4;

0 commit comments

Comments
 (0)