File tree 1 file changed +3
-3
lines changed
sycl/include/sycl/ext/oneapi/experimental
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -450,12 +450,12 @@ class __SYCL_EXPORT dynamic_parameter_base {
450
450
dynamic_parameter_base (
451
451
sycl::ext::oneapi::experimental::command_graph<graph_state::modifiable>
452
452
Graph,
453
- const property_list &PropList);
453
+ const property_list &PropList = {} );
454
454
455
455
dynamic_parameter_base (
456
456
sycl::ext::oneapi::experimental::command_graph<graph_state::modifiable>
457
457
Graph,
458
- size_t ParamSize, const void *Data, const property_list &PropList);
458
+ size_t ParamSize, const void *Data, const property_list &PropList = {} );
459
459
460
460
protected:
461
461
void updateValue (const void *NewValue, size_t Size );
@@ -499,7 +499,7 @@ class dynamic_parameter : public detail::dynamic_parameter_base {
499
499
// / @param Param A reference value for this parameter used for CTAD.
500
500
dynamic_parameter (experimental::command_graph<graph_state::modifiable> Graph,
501
501
const ValueT &Param)
502
- : detail::dynamic_parameter_base(Graph, sizeof (ValueT), &Param, {} ) {}
502
+ : detail::dynamic_parameter_base(Graph, sizeof (ValueT), &Param) {}
503
503
504
504
// / Updates this dynamic parameter and all registered nodes with a new value.
505
505
// / @param NewValue The new value for the parameter.
You can’t perform that action at this time.
0 commit comments