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, ...@@ -85,9 +85,6 @@ WallFloorWrapper::WallFloorWrapper( bool bWall,
m_bWall( 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() WallFloorWrapper::~WallFloorWrapper()
......
...@@ -61,9 +61,6 @@ namespace frm ...@@ -61,9 +61,6 @@ namespace frm
ORichTextUnoWrapper::ORichTextUnoWrapper( EditEngine& _rEngine, IEngineTextChangeListener* _pTextChangeListener ) ORichTextUnoWrapper::ORichTextUnoWrapper( EditEngine& _rEngine, IEngineTextChangeListener* _pTextChangeListener )
:SvxUnoText( getTextEnginePropertySet() ) :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 ) ); SetEditSource( new RichTextEditSource( _rEngine, _pTextChangeListener ) );
} }
......
...@@ -96,9 +96,6 @@ SC_SIMPLE_SERVICE_INFO( ScHeaderFooterTextObj, "ScHeaderFooterTextObj", "stardiv ...@@ -96,9 +96,6 @@ SC_SIMPLE_SERVICE_INFO( ScHeaderFooterTextObj, "ScHeaderFooterTextObj", "stardiv
ScHeaderFooterContentObj::ScHeaderFooterContentObj() 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() {} ScHeaderFooterContentObj::~ScHeaderFooterContentObj() {}
......
...@@ -55,9 +55,6 @@ UndoTextAPIChanged::UndoTextAPIChanged(SdrModel& rModel, TextApiObject* pTextObj ...@@ -55,9 +55,6 @@ UndoTextAPIChanged::UndoTextAPIChanged(SdrModel& rModel, TextApiObject* pTextObj
, mpOldText( pTextObj->CreateText() ) , mpOldText( pTextObj->CreateText() )
, mxTextObj( pTextObj ) , 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() void UndoTextAPIChanged::Undo()
......
...@@ -47,9 +47,6 @@ AccessiblePageShape::AccessiblePageShape ( ...@@ -47,9 +47,6 @@ AccessiblePageShape::AccessiblePageShape (
: AccessibleShape (AccessibleShapeInfo (nullptr, rxParent), rShapeTreeInfo), : AccessibleShape (AccessibleShapeInfo (nullptr, rxParent), rShapeTreeInfo),
mxPage (rxPage) 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 // The main part of the initialization is done in the init method which
// has to be called from this constructor's caller. // has to be called from this constructor's caller.
} }
......
...@@ -36,9 +36,6 @@ AccessiblePresentationGraphicShape::AccessiblePresentationGraphicShape ( ...@@ -36,9 +36,6 @@ AccessiblePresentationGraphicShape::AccessiblePresentationGraphicShape (
const AccessibleShapeTreeInfo& rShapeTreeInfo) const AccessibleShapeTreeInfo& rShapeTreeInfo)
: AccessibleGraphicShape (rShapeInfo, 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() AccessiblePresentationGraphicShape::~AccessiblePresentationGraphicShape()
......
...@@ -36,9 +36,6 @@ AccessiblePresentationOLEShape::AccessiblePresentationOLEShape ( ...@@ -36,9 +36,6 @@ AccessiblePresentationOLEShape::AccessiblePresentationOLEShape (
const AccessibleShapeTreeInfo& rShapeTreeInfo) const AccessibleShapeTreeInfo& rShapeTreeInfo)
: AccessibleOLEShape (rShapeInfo, 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() AccessiblePresentationOLEShape::~AccessiblePresentationOLEShape()
......
...@@ -56,9 +56,6 @@ SwTextAPIObject::SwTextAPIObject( SwTextAPIEditSource* p ) ...@@ -56,9 +56,6 @@ SwTextAPIObject::SwTextAPIObject( SwTextAPIEditSource* p )
: SvxUnoText( p, ImplGetSvxTextPortionPropertySet(), uno::Reference < text::XText >() ) : SvxUnoText( p, ImplGetSvxTextPortionPropertySet(), uno::Reference < text::XText >() )
, pSource(p) , 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() 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