diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-06-13 15:17:59 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-06-14 09:57:33 +0100 |
commit | 7ac335c62839602815ca59035b3db9c0b6394fd6 (patch) | |
tree | 5f01efd0a48477d3df32ac5e160cbe1d324bd36b /sal/rtl | |
parent | 93e79ed8eb7d2fab6b209f4c1de8859ead7b95cf (diff) |
catch by const reference
Diffstat (limited to 'sal/rtl')
-rw-r--r-- | sal/rtl/source/bootstrap.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/rtl/source/bootstrap.cxx b/sal/rtl/source/bootstrap.cxx index 6cf509f8f..a58dd0e1d 100644 --- a/sal/rtl/source/bootstrap.cxx +++ b/sal/rtl/source/bootstrap.cxx @@ -993,7 +993,7 @@ rtl::OUString expandMacros( try { buf.append( rtl::Uri::convertRelToAbs(seg[1], url)); - } catch (rtl::MalformedUriException &) {} + } catch (const rtl::MalformedUriException &) {} } } else { buf.append( |