@@ -76,7 +76,7 @@ class typed_builder_t<kind_t::child_graph> {
7676 if (not was_set.template_ ) {
7777 throw detail_::make_unspec_error (" child graph" , " child graph template" );
7878 }
79- return graph_template.insert .node <kind>(std::move (params_));
79+ return graph_template.insert .node <kind>(:: std::move (params_));
8080 }
8181}; // typed_builder_t<kind_t::child_graph>
8282
@@ -117,7 +117,7 @@ class typed_builder_t<kind_t::record_event> {
117117 if (not was_set.event ) {
118118 throw detail_::make_unspec_error (" record event" , " event" );
119119 }
120- return graph_template.insert .node <kind>(std::move (params_));
120+ return graph_template.insert .node <kind>(:: std::move (params_));
121121 }
122122}; // typed_builder_t<kind_t::record_event>
123123
@@ -156,7 +156,7 @@ class typed_builder_t<kind_t::wait_on_event> {
156156 if (not was_set.event ) {
157157 throw detail_::make_unspec_error (" wait on event" , " event" );
158158 }
159- return graph_template.insert .node <kind>(std::move (params_));
159+ return graph_template.insert .node <kind>(:: std::move (params_));
160160 }
161161}; // typed_builder_t<kind_t::wait_event>
162162
@@ -403,7 +403,7 @@ class typed_builder_t<kind_t::memory_copy> {
403403
404404 template <typename ... Ts>
405405 this_type& source (Ts&&... args) {
406- return do_ ([&]{ params_.set_source (std::forward<Ts>(args)...); });
406+ return do_ ([&]{ params_.set_source (:: std::forward<Ts>(args)...); });
407407 }
408408//
409409// template <typename... Ts>
@@ -413,7 +413,7 @@ class typed_builder_t<kind_t::memory_copy> {
413413
414414 template <typename ... Ts>
415415 this_type& destination (Ts&&... args) {
416- return do_ ([&]{ params_.set_destination (std::forward<Ts>(args)...); });
416+ return do_ ([&]{ params_.set_destination (:: std::forward<Ts>(args)...); });
417417 }
418418
419419 template <typename ... Ts>
@@ -485,7 +485,7 @@ class typed_builder_t<kind_t::memory_set> {
485485 {
486486 static_assert (sizeof (T) <= 4 , " Type of value to set is too wide; maximum size is 4" );
487487 static_assert (sizeof (T) != 3 , " Size of type to set is not a power of 2" );
488- static_assert (std::is_trivially_copy_constructible<T>::value, " Only a trivially-constructible value can be used for memset'ing" );
488+ static_assert (:: std::is_trivially_copy_constructible<T>::value, " Only a trivially-constructible value can be used for memset'ing" );
489489 return do_ ([&] {
490490 params_.width_in_bytes = sizeof (T);
491491 switch (sizeof (T)) {
0 commit comments