Merge branch 'vulkan' into shader-nodes

This commit is contained in:
Jérôme Leclercq
2020-07-08 22:38:24 +02:00
6 changed files with 19 additions and 17 deletions

View File

@@ -60,7 +60,10 @@ namespace Nz
return false;
}
return func(str.substr(previousPos));
if (previousPos < str.size())
return func(str.substr(previousPos));
else
return true;
}
template<typename F>