Skip to content

Commit c695dfc

Browse files
committed
Clang format hotfix
1 parent 1ee85ba commit c695dfc

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

sycl/source/detail/program_manager/program_manager.cpp

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1621,11 +1621,10 @@ ProgramManager::compile(const device_image_plain &DeviceImage,
16211621

16221622
const RTDeviceBinaryImage *ImgPtr = InputImpl->get_bin_image_ref();
16231623
const RTDeviceBinaryImage &Img = *ImgPtr;
1624-
const char* compileOptions = Img.getCompileOptions();
1624+
const char *compileOptions = Img.getCompileOptions();
16251625
RT::PiResult Error = Plugin.call_nocheck<PiApiKind::piProgramCompile>(
16261626
ObjectImpl->get_program_ref(), /*num devices=*/Devs.size(),
1627-
PIDevices.data(),
1628-
compileOptions,
1627+
PIDevices.data(), compileOptions,
16291628
/*num_input_headers=*/0, /*input_headers=*/nullptr,
16301629
/*header_include_names=*/nullptr,
16311630
/*pfn_notify=*/nullptr, /*user_data*/ nullptr);
@@ -1653,8 +1652,8 @@ ProgramManager::link(const std::vector<device_image_plain> &DeviceImages,
16531652
PIDevices.reserve(Devs.size());
16541653
for (const device &Dev : Devs)
16551654
PIDevices.push_back(getSyclObjImpl(Dev)->getHandleRef());
1656-
1657-
std::vector<const char*> linkOptions;
1655+
1656+
std::vector<const char *> linkOptions;
16581657
for (auto &DeviceImage : DeviceImages) {
16591658
const std::shared_ptr<device_image_impl> &InputImpl =
16601659
getSyclObjImpl(DeviceImage);

0 commit comments

Comments
 (0)