Skip to content

Commit 2f2369a

Browse files
committed
Fix formatting
1 parent a406c29 commit 2f2369a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sycl/source/detail/persistent_device_code_cache.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,8 @@ class PersistentDeviceCodeCache {
190190

191191
/* Sends message to std:cerr stream when SYCL_CACHE_TRACE environemnt is set*/
192192
static void trace(const std::string &msg) {
193-
static const bool traceEnabled = SYCLConfig<SYCL_CACHE_TRACE>::isTraceDiskCache();
193+
static const bool traceEnabled =
194+
SYCLConfig<SYCL_CACHE_TRACE>::isTraceDiskCache();
194195
if (traceEnabled)
195196
std::cerr << "[Persistent Cache]: " << msg << std::endl;
196197
}

sycl/unittests/config/ConfigTests.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,4 +324,3 @@ TEST(ConfigTests, CheckSyclCacheTraceTest) {
324324
sycl::detail::SYCLConfig<SYCL_CACHE_TRACE>::reset();
325325
TestConfig(0, 0, 0, 0);
326326
}
327-

0 commit comments

Comments
 (0)