diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-08-08 15:07:58 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-08-08 15:08:54 +0200 |
commit | aa96767c558a5393a5634355d61bd6cc56601a89 (patch) | |
tree | 440f1e0b541bee196b25bf807f443df532889888 /tools | |
parent | 389c315032e5eb18016e9a81207747fe0cdb5217 (diff) |
fix MSVC build
Change-Id: I7757f9c8ff98330b9168ee3c75e497a300f14124
Diffstat (limited to 'tools')
-rw-r--r-- | tools/inc/tools/pstm.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/inc/tools/pstm.hxx b/tools/inc/tools/pstm.hxx index 1cb882afcf03..c74c108c2cff 100644 --- a/tools/inc/tools/pstm.hxx +++ b/tools/inc/tools/pstm.hxx @@ -136,14 +136,14 @@ public: }; template<typename T> -TOOLS_DLLPUBLIC SvPersistStream& operator << (SvPersistStream &rStm, const SvDeclPersistList<T> &rLst) +SvPersistStream& operator << (SvPersistStream &rStm, const SvDeclPersistList<T> &rLst) { WritePersistListObjects( rLst, rStm ); return rStm; }; template<typename T> -TOOLS_DLLPUBLIC SvPersistStream& operator >> (SvPersistStream &rStm, SvDeclPersistList<T> &rLst) +SvPersistStream& operator >> (SvPersistStream &rStm, SvDeclPersistList<T> &rLst) { ReadObjects( rLst, rStm ); return rStm; |