Kaydet (Commit) d3f063cc authored tarafından Markus Mohrhard's avatar Markus Mohrhard

abstract type in ptr_container needs this workaround

Change-Id: I00be4d0963c9cebc50aff3eb44cb208b6eb8c88c
üst 64cd0d66
......@@ -354,6 +354,13 @@ public:
void erase(sal_uLong nIndex);
};
// see http://www.boost.org/doc/libs/1_49_0/libs/ptr_container/doc/tutorial.html#cloneability
//for MSVC we need:
inline ScFormatEntry* new_clone( const ScFormatEntry& rFormat )
{
return rFormat.Clone();
}
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment