Formatting: brackets around a for loop for consistency

This commit is contained in:
jpekkila
2019-07-05 15:26:19 +03:00
parent 224b91b83a
commit d87eb36f5a

View File

@@ -202,8 +202,9 @@ destroyDevice(Device device)
#endif
// Concurrency
for (int i = 0; i < NUM_STREAM_TYPES; ++i)
for (int i = 0; i < NUM_STREAM_TYPES; ++i) {
cudaStreamDestroy(device->streams[i]);
}
// Destroy Device
free(device);