# fix vc8 compilation. See https://sourceforge.net/projects/assimp/forums/forum/817654/topic/4372824
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@904 67173fc5-114c-0410-ac8e-9d2fd5bffc1fpull/1/head
parent
94767ecf8c
commit
00238e84e8
|
@ -127,6 +127,15 @@ public:
|
||||||
return *this;
|
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:
|
private:
|
||||||
mutable stringstream underlying;
|
mutable stringstream underlying;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue