Kaydet (Commit) 6325d571 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Revert "work around clang-cl ABI bug PR25641"

This reverts commit 81ce629c, now that
<https://bugs.llvm.org/show_bug.cgi?id=25641> "clang-cl: vtordisp thunks not
emitted for functions with class template specializations in their signatures"
is fixed.
üst 930a3cba
......@@ -85,9 +85,6 @@ WallFloorWrapper::WallFloorWrapper( bool bWall,
m_bWall( bWall )
{
#if defined __clang__ && defined _MSC_VER // workaround clang-cl ABI bug PR25641
css::uno::Sequence<css::beans::PropertyState> dummy; (void) dummy;
#endif
}
WallFloorWrapper::~WallFloorWrapper()
......
......@@ -61,9 +61,6 @@ namespace frm
ORichTextUnoWrapper::ORichTextUnoWrapper( EditEngine& _rEngine, IEngineTextChangeListener* _pTextChangeListener )
:SvxUnoText( getTextEnginePropertySet() )
{
#if defined __clang__ && defined _MSC_VER // workaround clang-cl ABI bug PR25641
css::uno::Sequence<css::beans::PropertyState> dummy; (void) dummy;
#endif
SetEditSource( new RichTextEditSource( _rEngine, _pTextChangeListener ) );
}
......
......@@ -96,9 +96,6 @@ SC_SIMPLE_SERVICE_INFO( ScHeaderFooterTextObj, "ScHeaderFooterTextObj", "stardiv
ScHeaderFooterContentObj::ScHeaderFooterContentObj()
{
#if defined __clang__ && defined _MSC_VER // workaround clang-cl ABI bug PR25641
css::uno::Sequence<css::beans::PropertyState> dummy; (void) dummy;
#endif
}
ScHeaderFooterContentObj::~ScHeaderFooterContentObj() {}
......
......@@ -55,9 +55,6 @@ UndoTextAPIChanged::UndoTextAPIChanged(SdrModel& rModel, TextApiObject* pTextObj
, mpOldText( pTextObj->CreateText() )
, mxTextObj( pTextObj )
{
#if defined __clang__ && defined _MSC_VER // workaround clang-cl ABI bug PR25641
css::uno::Sequence<css::beans::PropertyState> dummy; (void) dummy;
#endif
}
void UndoTextAPIChanged::Undo()
......
......@@ -47,9 +47,6 @@ AccessiblePageShape::AccessiblePageShape (
: AccessibleShape (AccessibleShapeInfo (nullptr, rxParent), rShapeTreeInfo),
mxPage (rxPage)
{
#if defined __clang__ && defined _MSC_VER // workaround clang-cl ABI bug PR25641
css::uno::Sequence<css::uno::Type> dummy; (void) dummy;
#endif
// The main part of the initialization is done in the init method which
// has to be called from this constructor's caller.
}
......
......@@ -36,9 +36,6 @@ AccessiblePresentationGraphicShape::AccessiblePresentationGraphicShape (
const AccessibleShapeTreeInfo& rShapeTreeInfo)
: AccessibleGraphicShape (rShapeInfo, rShapeTreeInfo)
{
#if defined __clang__ && defined _MSC_VER // workaround clang-cl ABI bug PR25641
css::uno::Sequence<css::uno::Type> dummy; (void) dummy;
#endif
}
AccessiblePresentationGraphicShape::~AccessiblePresentationGraphicShape()
......
......@@ -36,9 +36,6 @@ AccessiblePresentationOLEShape::AccessiblePresentationOLEShape (
const AccessibleShapeTreeInfo& rShapeTreeInfo)
: AccessibleOLEShape (rShapeInfo, rShapeTreeInfo)
{
#if defined __clang__ && defined _MSC_VER // workaround clang-cl ABI bug PR25641
css::uno::Sequence<css::uno::Type> dummy; (void) dummy;
#endif
}
AccessiblePresentationOLEShape::~AccessiblePresentationOLEShape()
......
......@@ -56,9 +56,6 @@ SwTextAPIObject::SwTextAPIObject( SwTextAPIEditSource* p )
: SvxUnoText( p, ImplGetSvxTextPortionPropertySet(), uno::Reference < text::XText >() )
, pSource(p)
{
#if defined __clang__ && defined _MSC_VER // workaround clang-cl ABI bug PR25641
css::uno::Sequence<css::beans::PropertyState>dummy; (void) dummy;
#endif
}
SwTextAPIObject::~SwTextAPIObject() throw()
......
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