@@ -324,7 +324,8 @@ handler::handler(detail::handler_impl *HandlerImpl,
324324
325325static std::shared_ptr<detail::queue_impl> DummyQueue;
326326
327- handler::handler (detail::handler_impl *HandlerImpl) : impl(HandlerImpl), MQueue(DummyQueue) {}
327+ handler::handler (detail::handler_impl *HandlerImpl)
328+ : impl(HandlerImpl), MQueue(DummyQueue) {}
328329
329330// Sets the submission state to indicate that an explicit kernel bundle has been
330331// set. Throws a sycl::exception with errc::invalid if the current state
@@ -1713,8 +1714,8 @@ void handler::ext_oneapi_signal_external_semaphore(
17131714
17141715void handler::use_kernel_bundle (
17151716 const kernel_bundle<bundle_state::executable> &ExecBundle) {
1716- if ((!impl->MGraph &&
1717- (impl-> MSubmissionPrimaryQueue -> get_context () != ExecBundle.get_context ())) ||
1717+ if ((!impl->MGraph && (impl-> MSubmissionPrimaryQueue -> get_context () !=
1718+ ExecBundle.get_context ())) ||
17181719 (impl->MGraph &&
17191720 (impl->MGraph ->getContext () != ExecBundle.get_context ())))
17201721 throw sycl::exception (
@@ -1723,7 +1724,8 @@ void handler::use_kernel_bundle(
17231724 " context associated with the kernel bundle" );
17241725
17251726 if (impl->MSubmissionSecondaryQueue &&
1726- impl->MSubmissionSecondaryQueue ->get_context () != ExecBundle.get_context ())
1727+ impl->MSubmissionSecondaryQueue ->get_context () !=
1728+ ExecBundle.get_context ())
17271729 throw sycl::exception (
17281730 make_error_code (errc::invalid),
17291731 " Context associated with the secondary queue is different from the "
0 commit comments