mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
[SHELLBTRFS] Replace emplace_back by something less efficient if not avaible
This commit is contained in:
parent
a3c13c624f
commit
5f779048d3
1 changed files with 4 additions and 0 deletions
|
@ -217,7 +217,11 @@ vector<mountmgr_point> mountmgr::query_points(const wstring_view& symlink, const
|
|||
if (mmps->MountPoints[i].DeviceNameLength)
|
||||
mpdn = wstring_view((WCHAR*)((uint8_t*)mmps + mmps->MountPoints[i].DeviceNameOffset), mmps->MountPoints[i].DeviceNameLength / sizeof(WCHAR));
|
||||
|
||||
#ifndef __REACTOS__
|
||||
v.emplace_back(mpsl, mpuid, mpdn);
|
||||
#else
|
||||
v.push_back(mountmgr_point(mpsl, mpuid, mpdn));
|
||||
#endif
|
||||
}
|
||||
|
||||
return v;
|
||||
|
|
Loading…
Reference in a new issue