diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-06-29 22:37:39 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-06-29 22:39:20 +0200 |
commit | 8a7ede404ca4980f169c4ce634805ea5c1b6b56e (patch) | |
tree | 348123e55ac13678e89ea985d9768a5d5ea1cc94 | |
parent | 9911631895f2e42b5c90a108e4940b0091d05ee1 (diff) |
SVGWriter: fix build with C++98 compilers
Change-Id: Idae0823767291081ed51a478583273daaa0cd1c3
-rw-r--r-- | filter/source/svg/svgfilter.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/source/svg/svgfilter.cxx b/filter/source/svg/svgfilter.cxx index 54a257dcaa74..6b030a2c8df6 100644 --- a/filter/source/svg/svgfilter.cxx +++ b/filter/source/svg/svgfilter.cxx @@ -319,7 +319,7 @@ namespace sdecl = comphelper::service_decl; "com.sun.star.document.ExportFilter;" "com.sun.star.document.ExtendedTypeDetection" ); - sdecl::class_<SVGWriter, sdecl::with_args<true>> serviceWriterImpl; + sdecl::class_<SVGWriter, sdecl::with_args<true> > serviceWriterImpl; const sdecl::ServiceDecl svgWriter( serviceWriterImpl, SVG_WRITER_IMPL_NAME, |