Skip to content

Commit

Permalink
Generalized CUDF_FAIL messages
Browse files Browse the repository at this point in the history
  • Loading branch information
robertmaynard committed May 14, 2021
1 parent 13cb7b5 commit f1adb67
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions cpp/src/copying/segmented_shift.cu
Original file line number Diff line number Diff line change
Expand Up @@ -121,14 +121,6 @@ struct segmented_shift_functor {
template <typename... Args>
std::unique_ptr<column> operator()(Args&&...)
{
if constexpr (std::is_same_v<T, cudf::list_view>) {
CUDF_FAIL("segmented_shift does not support list_view yet");
}

if constexpr (std::is_same_v<T, cudf::struct_view>) {
CUDF_FAIL("segmented_shift does not support struct_view yet");
}

CUDF_FAIL("Unsupported type for segmented_shift.");
}
};
Expand Down

0 comments on commit f1adb67

Please sign in to comment.