Small formatting change

This commit is contained in:
Vanya Yaneva 2017-07-27 17:39:13 +01:00
parent 8c4af581d1
commit 9916a81bc5

View File

@ -49,9 +49,9 @@ SYCLStream<T>::SYCLStream(const unsigned int ARRAY_SIZE, const int device_index)
queue = new cl::sycl::queue(dev, [&](cl::sycl::exception_list l) {
try {
for(auto e: l) {
std::rethrow_exception(e);
}
for(auto e: l) {
std::rethrow_exception(e);
}
} catch (cl::sycl::exception e) {
std::cout << e.what();
}