# some fixes to reduce the size of the binary. Total savings are ~3%. Thanks to Krishty for his efforts in that regard.

git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@939 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
This commit is contained in:
aramis_acg
2011-04-03 15:12:05 +00:00
parent 45d6647ffe
commit 85cd9be46d
7 changed files with 62 additions and 31 deletions

View File

@@ -68,7 +68,7 @@ static const std::string Q3BSPExtension = "pk3";
// Local function to create a material key name.
static void createKey( int id1, int id2, std::string &rKey )
{
std::stringstream str;
std::ostringstream str;
str << id1 << "." << id2;
rKey = str.str();
}