Skip to content

Commit

Permalink
Fix build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiomestre committed Jan 15, 2025
1 parent 28d0d3a commit 5a47f11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sycl/include/sycl/ext/oneapi/experimental/graph.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ class dynamic_parameter : public detail::dynamic_parameter_base {
/// @param Param A reference value for this parameter used for CTAD.
dynamic_parameter(experimental::command_graph<graph_state::modifiable> Graph,
const ValueT &Param)
: detail::dynamic_parameter_base(Graph, sizeof(ValueT), &Param) {}
: detail::dynamic_parameter_base(Graph, sizeof(ValueT), &Param, {}) {}

/// Updates this dynamic parameter and all registered nodes with a new value.
/// @param NewValue The new value for the parameter.
Expand Down

0 comments on commit 5a47f11

Please sign in to comment.