Skip to content

Commit

Permalink
Correct compile issues introduced by previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
robertmaynard committed May 17, 2021
1 parent cc75f45 commit 96de74e
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions cpp/src/dictionary/search.cu
Original file line number Diff line number Diff line change
Expand Up @@ -143,10 +143,9 @@ struct find_insert_index_fn {
{
CUDF_FAIL("dictionary, list_view, and struct_view columns cannot be the keys for a dictionary");
}
}
}; // namespace
};

} // namespace detail
} // namespace

std::unique_ptr<scalar> get_index(dictionary_column_view const& dictionary,
scalar const& key,
Expand All @@ -170,7 +169,7 @@ std::unique_ptr<scalar> get_insert_index(dictionary_column_view const& dictionar
dictionary.keys().type(), find_insert_index_fn(), dictionary, key, stream, mr);
}

} // namespace dictionary
} // namespace detail

// external API

Expand All @@ -182,5 +181,5 @@ std::unique_ptr<scalar> get_index(dictionary_column_view const& dictionary,
return detail::get_index(dictionary, key, rmm::cuda_stream_default, mr);
}

} // namespace cudf
} // namespace dictionary
} // namespace cudf

0 comments on commit 96de74e

Please sign in to comment.