Skip to content

Commit 1cfec8b

Browse files
committed
Rollback unwanted format change
Signed-off-by: Julian Oppermann <[email protected]>
1 parent d2178e0 commit 1cfec8b

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

sycl/source/detail/kernel_bundle_impl.hpp

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -869,11 +869,12 @@ class kernel_bundle_impl {
869869
}
870870

871871
bool is_specialization_constant_set(const char *SpecName) const noexcept {
872-
bool SetInDevImg = std::any_of(
873-
begin(), end(), [SpecName](const device_image_plain &DeviceImage) {
874-
return getSyclObjImpl(DeviceImage)
875-
->is_specialization_constant_set(SpecName);
876-
});
872+
bool SetInDevImg =
873+
std::any_of(begin(), end(),
874+
[SpecName](const device_image_plain &DeviceImage) {
875+
return getSyclObjImpl(DeviceImage)
876+
->is_specialization_constant_set(SpecName);
877+
});
877878
return SetInDevImg || MSpecConstValues.count(std::string{SpecName}) != 0;
878879
}
879880

0 commit comments

Comments
 (0)