From 53b76bbea004120cb2e9fbe0b89379b489c2f06c Mon Sep 17 00:00:00 2001 From: Maxime France-Pillois Date: Thu, 25 Jan 2024 16:05:52 +0000 Subject: [PATCH] fixes format --- sycl/source/detail/event_impl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sycl/source/detail/event_impl.cpp b/sycl/source/detail/event_impl.cpp index a09d0393b9d30..21ff7ed8b4404 100644 --- a/sycl/source/detail/event_impl.cpp +++ b/sycl/source/detail/event_impl.cpp @@ -155,8 +155,8 @@ event_impl::event_impl(sycl::detail::pi::PiEvent Event, } event_impl::event_impl(const QueueImplPtr &Queue) - : MQueue{Queue}, MIsProfilingEnabled{Queue->is_host() || - Queue->MIsProfilingEnabled}, + : MQueue{Queue}, + MIsProfilingEnabled{Queue->is_host() || Queue->MIsProfilingEnabled}, MFallbackProfiling{MIsProfilingEnabled && Queue->isProfilingFallback()} { this->setContextImpl(Queue->getContextImplPtr()); if (Queue->is_host()) {