diff options
author | Tor Lillqvist <tml@collabora.com> | 2020-04-21 19:04:48 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2020-04-21 19:07:12 +0300 |
commit | 3855d070f1b05dcc6b7ec197f5111e99ad201d38 (patch) | |
tree | 9a27ef5c577ac93260b46c9d7c5b9149a411ad06 | |
parent | 491235b48abd64392f717eb771ac4e12c797dfc8 (diff) |
Fix warning when compiling for iOS: unused parameter 'bCreateParentDirs'
Change-Id: I3d27837ea49ad964a40f53083d90f2a287bae8a0
-rw-r--r-- | unotools/source/ucbhelper/tempfile.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/unotools/source/ucbhelper/tempfile.cxx b/unotools/source/ucbhelper/tempfile.cxx index d6580755c9c9..d8f406b7ae05 100644 --- a/unotools/source/ucbhelper/tempfile.cxx +++ b/unotools/source/ucbhelper/tempfile.cxx @@ -138,6 +138,7 @@ static OUString ConstructTempDir_Impl( const OUString* pParent, bool bCreatePare } #else (void) pParent; + (void) bCreateParentDirs; #endif if ( aName.isEmpty() ) |