Skip to content

Commit b90a111

Browse files
committed
Small adaptation of bac5a1d to Windows
1 parent a0f050a commit b90a111

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/slg/imagemap/imagemap.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -713,7 +713,7 @@ ImageMapStorageUPtr ImageMapStorageImpl<T, CHANNELS>::SelectChannel(
713713
newPixels.reserve(pixelCount);
714714
for (auto& p: pixels) {
715715
newPixels.emplace_back(
716-
(std::initializer_list<T>){p[0], p[1], p[2]}
716+
std::initializer_list<T>{p[0], p[1], p[2]}
717717
);
718718
}
719719
return std::make_unique<ImageMapStorageImpl<T, 3>>(

0 commit comments

Comments
 (0)