aramis_acg 2011-02-22 19:51:32 +00:00
parent 94767ecf8c
commit 00238e84e8
1 changed files with 9 additions and 0 deletions

View File

@ -127,6 +127,15 @@ public:
return *this;
}
// Fix for MSVC8
// See https://sourceforge.net/projects/assimp/forums/forum/817654/topic/4372824
template <typename TToken>
basic_formatter& operator, (TToken& s) {
underlying << s;
return *this;
}
private:
mutable stringstream underlying;
};