mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-07-02 05:33:27 +00:00
MS STL iteration fix
This commit is contained in:
parent
a2a4a4e830
commit
4bf50c8c8d
@ -782,7 +782,11 @@ public:
|
||||
if (replace)
|
||||
{
|
||||
auto relIt = pp.m_relPath.end();
|
||||
if (relIt != pp.m_relPath.begin())
|
||||
--relIt;
|
||||
auto absIt = pp.m_absPath.end();
|
||||
if (absIt != pp.m_absPath.begin())
|
||||
--absIt;
|
||||
while (relIt != pp.m_relPath.begin() && *relIt != _S('.') && *relIt != _S('/'))
|
||||
{
|
||||
--relIt;
|
||||
|
Loading…
x
Reference in New Issue
Block a user