diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2013-11-27 09:47:40 +0000 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2013-11-27 09:48:06 +0000 |
commit | bc90fb9e3072d751158a8ea0ca0a893d271b8973 (patch) | |
tree | 8304ee13b7eddd60501df41386256c2c6b883526 /sax/source | |
parent | 34592b9189bf47438a452479972968d33a3a4c1b (diff) |
fastparser: Outline virtual destructor to please MSVC++.
Change-Id: I8368698e80e5ebe339b822a9e0e767e8ba867e07
Diffstat (limited to 'sax/source')
-rw-r--r-- | sax/source/tools/fastattribs.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sax/source/tools/fastattribs.cxx b/sax/source/tools/fastattribs.cxx index bc63b3eeeb2a..595c7365e6e7 100644 --- a/sax/source/tools/fastattribs.cxx +++ b/sax/source/tools/fastattribs.cxx @@ -27,6 +27,11 @@ using namespace ::com::sun::star::xml::sax; namespace sax_fastparser { +// wasteage to keep MSVC happy vs. an in-line {} +FastTokenHandlerBase::FastTokenHandlerBase() +{ +} + UnknownAttribute::UnknownAttribute( const OUString& rNamespaceURL, const OString& rName, const sal_Char* pValue ) : maNamespaceURL( rNamespaceURL ), maName( rName ), maValue( pValue ) { |