diff options
author | Isamu Mogi <saturday6c@gmail.com> | 2014-03-17 23:20:01 +0900 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-19 10:25:27 +0000 |
commit | 38cf887abd4b8a0280917e31aa27632f4f341b9a (patch) | |
tree | cbfbc23939732b924af8ed873cbe63cb81d0717e /include/cppuhelper | |
parent | 58d80a6f439f2834470659397ccd1913c6955d29 (diff) |
Replace UTF-8 no-break space to ASCII space
UTF-8 no-break space causes C4819 warning in MSVC with CP932.
Change-Id: I83a6ea6d060d132d21d8ea3141051f850d0e6bd2
Reviewed-on: https://gerrit.libreoffice.org/8628
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/cppuhelper')
-rw-r--r-- | include/cppuhelper/weak.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/cppuhelper/weak.hxx b/include/cppuhelper/weak.hxx index 47f3d8d04071..67bc0b74614b 100644 --- a/include/cppuhelper/weak.hxx +++ b/include/cppuhelper/weak.hxx @@ -163,8 +163,8 @@ public: To be used like: css::uno::XInterface * FOO_constructor_function(...) { - return cppu::acquire(new FOO(...)); - } + return cppu::acquire(new FOO(...)); + } @param instance Newly created instance that should be acquired. |