Skip to content

Commit 66902e2

Browse files
committed
Fix indentation.
1 parent d72fd28 commit 66902e2

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

backends/source/dppl_sycl_context_interface.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ using namespace cl::sycl;
3232

3333
namespace
3434
{
35-
// Create wrappers for C Binding types (see CBindingWrapping.h).
36-
DEFINE_SIMPLE_CONVERSION_FUNCTIONS(context, DPPLSyclContextRef)
35+
// Create wrappers for C Binding types (see CBindingWrapping.h).
36+
DEFINE_SIMPLE_CONVERSION_FUNCTIONS(context, DPPLSyclContextRef)
3737
} /* end of anonymous namespace */
3838

3939

backends/source/dppl_sycl_queue_manager.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ using namespace cl::sycl;
3939
namespace
4040
{
4141

42-
// Create wrappers for C Binding types (see CBindingWrapping.h).
43-
DEFINE_SIMPLE_CONVERSION_FUNCTIONS(queue, DPPLSyclQueueRef)
42+
// Create wrappers for C Binding types (see CBindingWrapping.h).
43+
DEFINE_SIMPLE_CONVERSION_FUNCTIONS(queue, DPPLSyclQueueRef)
4444

4545
void error_reporter (const std::string & msg)
4646
{
@@ -99,6 +99,7 @@ class QMgrHelper
9999
static cl::sycl::vector_class<cl::sycl::queue>*
100100
init_queues (info::device_type device_ty)
101101
{
102+
102103
auto queues = new std::vector<cl::sycl::queue>();
103104
for(auto d : device::get_devices(device_ty))
104105
queues->emplace_back(d);

backends/source/dppl_sycl_usm_interface.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ using namespace cl::sycl;
3434
namespace
3535
{
3636
// Create wrappers for C Binding types (see CBindingWrapping.h).
37-
DEFINE_SIMPLE_CONVERSION_FUNCTIONS(queue, DPPLSyclQueueRef)
38-
DEFINE_SIMPLE_CONVERSION_FUNCTIONS(context, DPPLSyclContextRef)
39-
DEFINE_SIMPLE_CONVERSION_FUNCTIONS(void, DPPLSyclUSMRef)
37+
DEFINE_SIMPLE_CONVERSION_FUNCTIONS(queue, DPPLSyclQueueRef)
38+
DEFINE_SIMPLE_CONVERSION_FUNCTIONS(context, DPPLSyclContextRef)
39+
DEFINE_SIMPLE_CONVERSION_FUNCTIONS(void, DPPLSyclUSMRef)
4040

4141
} /* end of anonymous namespace */
4242

0 commit comments

Comments
 (0)