Skip to content

Commit d99277f

Browse files
[SYCL][NFC] Fix post-commit unit test warning (#14718)
1 parent 4bf1fe3 commit d99277f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sycl/unittests/program_manager/DynamicLinking.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ generateImage(std::initializer_list<std::string> KernelNames,
6464
sycl::unittest::PiPropertySet PropSet;
6565
if (!ExportedSymbols.empty())
6666
PropSet.insert(__SYCL_PI_PROPERTY_SET_SYCL_EXPORTED_SYMBOLS,
67-
std::move(createPropertySet(ExportedSymbols)));
67+
createPropertySet(ExportedSymbols));
6868
if (!ImportedSymbols.empty())
6969
PropSet.insert(__SYCL_PI_PROPERTY_SET_SYCL_IMPORTED_SYMBOLS,
70-
std::move(createPropertySet(ImportedSymbols)));
70+
createPropertySet(ImportedSymbols));
7171
std::vector<unsigned char> Bin{Magic};
7272

7373
sycl::unittest::PiArray<sycl::unittest::PiOffloadEntry> Entries =
@@ -194,4 +194,4 @@ TEST(DynamicLinking, AheadOfTime) {
194194
}
195195
}
196196

197-
} // anonymous namespace
197+
} // anonymous namespace

0 commit comments

Comments
 (0)