diff options
author | brainbreaker <gautamprajapati06@gmail.com> | 2017-06-20 15:50:21 +0530 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-06-20 17:04:34 +0200 |
commit | a6a447b08dd3959747181fe5350db68acc8c7481 (patch) | |
tree | 961f80c70ebbe58d23e2d53c545bfc7b664cf424 /cppuhelper | |
parent | bb34ecfb6b2cb1c0dcf6e7564ee1f59c0fde9520 (diff) |
android:Supress the Clang's unneeded-internal-declaration warning
Change-Id: I76359e98a41206f914c3c05149f0a7eeeff1acc8
Reviewed-on: https://gerrit.libreoffice.org/39007
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'cppuhelper')
-rw-r--r-- | cppuhelper/source/paths.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cppuhelper/source/paths.cxx b/cppuhelper/source/paths.cxx index f96044bd3c24..7add3ac72de7 100644 --- a/cppuhelper/source/paths.cxx +++ b/cppuhelper/source/paths.cxx @@ -36,6 +36,7 @@ namespace { +#ifndef ANDROID rtl::OUString get_this_libpath() { static rtl::OUString s_uri; if (s_uri.isEmpty()) { @@ -55,7 +56,7 @@ rtl::OUString get_this_libpath() { } return s_uri; } - +#endif } rtl::OUString cppu::getUnoIniUri() { |