Skip to content

Commit d212fe7

Browse files
author
Sergey Kanaev
committed
Stylistic change
Signed-off-by: Sergey Kanaev <[email protected]>
1 parent 65afd32 commit d212fe7

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

sycl/plugins/opencl/pi_opencl.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ typedef CL_API_ENTRY cl_int(CL_API_CALL *clSetProgramSpecializationConstant_fn)(
8484
struct ExtFuncsPerContextT;
8585

8686
namespace detail {
87-
template <const char *FuncName, typename FuncT>
88-
std::pair<FuncT &, bool &> get(ExtFuncsPerContextT &);
87+
template <const char *FuncName, typename FuncT>
88+
std::pair<FuncT &, bool &> get(ExtFuncsPerContextT &);
8989
} // namespace detail
9090

9191
struct ExtFuncsPerContextT {
@@ -114,20 +114,20 @@ namespace detail {
114114
#define _EXT_FUNCTION_INTEL(t_pfx) \
115115
template <> \
116116
std::pair<t_pfx##INTEL_fn &, bool &> get<t_pfx##Name, t_pfx##INTEL_fn>( \
117-
ExtFuncsPerContextT &Funcs) { \
117+
ExtFuncsPerContextT & Funcs) { \
118118
using FPtrT = t_pfx##INTEL_fn; \
119-
std::pair<FPtrT &, bool &> Ret{ \
120-
Funcs.t_pfx##Func, Funcs.t_pfx##Initialized}; \
119+
std::pair<FPtrT &, bool &> Ret{Funcs.t_pfx##Func, \
120+
Funcs.t_pfx##Initialized}; \
121121
return Ret; \
122122
}
123123

124124
#define _EXT_FUNCTION(t_pfx) \
125125
template <> \
126126
std::pair<t_pfx##_fn &, bool &> get<t_pfx##Name, t_pfx##_fn>( \
127-
ExtFuncsPerContextT &Funcs) { \
127+
ExtFuncsPerContextT & Funcs) { \
128128
using FPtrT = t_pfx##_fn; \
129-
std::pair<FPtrT &, bool &> Ret{ \
130-
Funcs.t_pfx##Func, Funcs.t_pfx##Initialized}; \
129+
std::pair<FPtrT &, bool &> Ret{Funcs.t_pfx##Func, \
130+
Funcs.t_pfx##Initialized}; \
131131
return Ret; \
132132
}
133133

0 commit comments

Comments
 (0)