summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@collabora.com>2013-11-27 09:47:40 +0000
committerKohei Yoshida <kohei.yoshida@collabora.com>2013-12-04 11:41:34 -0500
commiteb82f53912cd8fa7866c23c3fd5cd4a5b7b791f8 (patch)
tree8e1663f00538aa119e88d79cd46626efe83691d9 /include
parent581686cd0f07b7ae6c6fb8b42c25d459f1c86402 (diff)
fastparser: Outline virtual destructor to please MSVC++.
Change-Id: I8368698e80e5ebe339b822a9e0e767e8ba867e07
Diffstat (limited to 'include')
-rw-r--r--include/sax/fastattribs.hxx2
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;
};