diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2018-10-07 13:06:05 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2018-10-07 14:43:03 +0200 |
commit | 67e5201cc6caee52d8e37e98a0d535c085c19cb4 (patch) | |
tree | 7ae2cb43cde334d75589fbdf5380e90ca10283ec /vcl | |
parent | 8a445db3bb59a3e046daa62c1a1e0e199f3977b7 (diff) |
-Werror=catch-value=
Change-Id: I58563735e6cf5004b4ac5e846885414f0c603f4c
Reviewed-on: https://gerrit.libreoffice.org/61491
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/font/fontcache.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/font/fontcache.cxx b/vcl/source/font/fontcache.cxx index 2b2e062ecea0..b8e4bec2b5ce 100644 --- a/vcl/source/font/fontcache.cxx +++ b/vcl/source/font/fontcache.cxx @@ -186,7 +186,7 @@ rtl::Reference<LogicalFontInstance> ImplFontCache::GetFontInstance( PhysicalFont return true; }); } - catch (limit_exception) {} + catch (limit_exception&) {} } assert(pFontInstance); |