Browse Source

Fix broken formatting

master
Jared Hoberock 3 years ago
parent
commit
9ef47d9097
  1. 1
      tutorials/5_device_functions.md

1
tutorials/5_device_functions.md

@ -45,6 +45,7 @@ __device__ int my_illegal_recursive_device_function(int x) @@ -45,6 +45,7 @@ __device__ int my_illegal_recursive_device_function(int x)
if(x == 0) return 1;
return x * my_illegal_recursive_device_function(x-1);
}
```
This code produces the following compiler error:

Loading…
Cancel
Save