mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-09-21 20:06:40 +00:00
VC2010 fix
This was SVN commit r7740.
This commit is contained in:
@@ -43,6 +43,7 @@
|
||||
#include <cassert>
|
||||
#include <vector>
|
||||
#include <limits>
|
||||
#include <iterator>
|
||||
|
||||
class PSAConvert
|
||||
{
|
||||
@@ -128,7 +129,7 @@ public:
|
||||
|
||||
// Push frameBoneTransforms onto the back of boneTransforms
|
||||
copy(frameBoneTransforms.begin(), frameBoneTransforms.end(),
|
||||
inserter(boneTransforms, boneTransforms.end()));
|
||||
std::inserter(boneTransforms, boneTransforms.end()));
|
||||
}
|
||||
|
||||
// Convert into game's coordinate space
|
||||
|
||||
Reference in New Issue
Block a user