Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for logical and syntactical errors in libcudf c++ examples #15346

Merged
merged 13 commits into from
Apr 10, 2024
2 changes: 1 addition & 1 deletion cpp/examples/basic/src/process_csv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ int main(int argc, char** argv)
rmm::mr::set_current_device_resource(&mr);

// for testing the CI.
mhaseeb123 marked this conversation as resolved.
Show resolved Hide resolved
i_am_a_dummy_compile_time_error;
#error "Force compilation error to test CI"

// Read data
auto stock_table_with_metadata = read_csv("4stock_5day.csv");
Expand Down
Loading