@@ -140,7 +140,7 @@ class csvc : public ::plssvm::csvc,
140140 */
141141 explicit csvc (const parameter params) :
142142 ::plssvm::csvm{ params },
143- ::plssvm::stdpar::csvm{ } { }
143+ ::plssvm::stdpar::csvm{} { }
144144
145145 /* *
146146 * @brief Construct a new C-SVC using the stdpar backend on the @p target platform with the parameters given through @p params.
@@ -160,7 +160,7 @@ class csvc : public ::plssvm::csvc,
160160 template <typename ... Args, PLSSVM_REQUIRES(::plssvm::detail::has_only_parameter_named_args_v<Args...>)>
161161 explicit csvc (Args &&...named_args) :
162162 ::plssvm::csvm{ std::forward<Args>(named_args)... },
163- ::plssvm::stdpar::csvm{ } { }
163+ ::plssvm::stdpar::csvm{} { }
164164
165165 /* *
166166 * @brief Construct a new C-SVC using the stdpar backend on the @p target platform and the optionally provided @p named_args.
@@ -188,7 +188,7 @@ class csvr : public ::plssvm::csvr,
188188 */
189189 explicit csvr (const parameter params) :
190190 ::plssvm::csvm{ params },
191- ::plssvm::stdpar::csvm{ } { }
191+ ::plssvm::stdpar::csvm{} { }
192192
193193 /* *
194194 * @brief Construct a new C-SVR using the stdpar backend on the @p target platform with the parameters given through @p params.
@@ -208,7 +208,7 @@ class csvr : public ::plssvm::csvr,
208208 template <typename ... Args, PLSSVM_REQUIRES(::plssvm::detail::has_only_parameter_named_args_v<Args...>)>
209209 explicit csvr (Args &&...named_args) :
210210 ::plssvm::csvm{ std::forward<Args>(named_args)... },
211- ::plssvm::stdpar::csvm{ } { }
211+ ::plssvm::stdpar::csvm{} { }
212212
213213 /* *
214214 * @brief Construct a new C-SVR using the stdpar backend on the @p target platform and the optionally provided @p named_args.
@@ -219,7 +219,7 @@ class csvr : public ::plssvm::csvr,
219219 template <typename ... Args, PLSSVM_REQUIRES(::plssvm::detail::has_only_parameter_named_args_v<Args...>)>
220220 explicit csvr (const target_platform target, Args &&...named_args) :
221221 ::plssvm::csvm{ std::forward<Args>(named_args)... },
222- ::plssvm::stdpar::csvm{ target} { }
222+ ::plssvm::stdpar::csvm{ target } { }
223223};
224224
225225} // namespace stdpar
0 commit comments