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 /include | |
parent | 34592b9189bf47438a452479972968d33a3a4c1b (diff) |
fastparser: Outline virtual destructor to please MSVC++.
Change-Id: I8368698e80e5ebe339b822a9e0e767e8ba867e07
Diffstat (limited to 'include')
-rw-r--r-- | include/sax/fastattribs.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sax/fastattribs.hxx b/include/sax/fastattribs.hxx index f1f64dd4b9ed..bb1b93d9121b 100644 --- a/include/sax/fastattribs.hxx +++ b/include/sax/fastattribs.hxx @@ -53,7 +53,7 @@ typedef std::vector< UnknownAttribute > UnknownAttributeList; class SAX_DLLPUBLIC FastTokenHandlerBase { public: - virtual ~FastTokenHandlerBase() {} + virtual ~FastTokenHandlerBase(); virtual sal_Int32 getTokenDirect( const char *pToken, sal_Int32 nLength ) const = 0; }; |