[SHELLBTRFS] Replace emplace_back by something less efficient if not avaible

This commit is contained in:
Pierre Schweitzer 2019-11-12 23:29:08 +01:00
parent a3c13c624f
commit 5f779048d3
No known key found for this signature in database
GPG key ID: 7545556C3D585B0B

View file

@ -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;