Skip to content

Commit

Permalink
docs; nodiscard
Browse files Browse the repository at this point in the history
  • Loading branch information
vuule committed May 4, 2022
1 parent cf66602 commit ec806eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/src/io/parquet/reader_impl.cu
Original file line number Diff line number Diff line change
Expand Up @@ -335,9 +335,9 @@ class aggregate_reader_metadata {
}

/**
* @brief Merge the keyvalue maps from each per-file metadata object into a single map.
* @brief Collect the keyvalue maps from each per-file metadata object into a vector of maps.
*/
auto collect_keyval_metadata()
[[nodiscard]] auto collect_keyval_metadata()
{
std::vector<std::map<std::string, std::string>> kv_maps;
std::transform(per_file_metadata.cbegin(),
Expand Down

0 comments on commit ec806eb

Please sign in to comment.