From 2f2369a09c397f0cc4196bd25a89f6dfb04c9cbe Mon Sep 17 00:00:00 2001 From: "Agarwal, Udit" Date: Wed, 23 Oct 2024 17:23:18 -0700 Subject: [PATCH] Fix formatting --- sycl/source/detail/persistent_device_code_cache.hpp | 3 ++- sycl/unittests/config/ConfigTests.cpp | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sycl/source/detail/persistent_device_code_cache.hpp b/sycl/source/detail/persistent_device_code_cache.hpp index 3815e5a1d0bf0..868c247f28903 100644 --- a/sycl/source/detail/persistent_device_code_cache.hpp +++ b/sycl/source/detail/persistent_device_code_cache.hpp @@ -190,7 +190,8 @@ class PersistentDeviceCodeCache { /* Sends message to std:cerr stream when SYCL_CACHE_TRACE environemnt is set*/ static void trace(const std::string &msg) { - static const bool traceEnabled = SYCLConfig::isTraceDiskCache(); + static const bool traceEnabled = + SYCLConfig::isTraceDiskCache(); if (traceEnabled) std::cerr << "[Persistent Cache]: " << msg << std::endl; } diff --git a/sycl/unittests/config/ConfigTests.cpp b/sycl/unittests/config/ConfigTests.cpp index b5dc1a12cb478..3022ccbd52e65 100644 --- a/sycl/unittests/config/ConfigTests.cpp +++ b/sycl/unittests/config/ConfigTests.cpp @@ -324,4 +324,3 @@ TEST(ConfigTests, CheckSyclCacheTraceTest) { sycl::detail::SYCLConfig::reset(); TestConfig(0, 0, 0, 0); } -