unotools/source/ucbhelper/tempfile.cxx | 1 + 1 file changed, 1 insertion(+)
New commits: commit c3a67532c7732b0e206fe26faf8f532f693c933f Author: Tor Lillqvist <[email protected]> AuthorDate: Tue Apr 21 19:04:48 2020 +0300 Commit: Tor Lillqvist <[email protected]> CommitDate: Thu May 14 14:21:17 2020 +0300 Fix warning when compiling for iOS: unused parameter 'bCreateParentDirs' Change-Id: I3d27837ea49ad964a40f53083d90f2a287bae8a0 (cherry picked from commit 3855d070f1b05dcc6b7ec197f5111e99ad201d38) diff --git a/unotools/source/ucbhelper/tempfile.cxx b/unotools/source/ucbhelper/tempfile.cxx index 937fc4455337..128a1f26597c 100644 --- a/unotools/source/ucbhelper/tempfile.cxx +++ b/unotools/source/ucbhelper/tempfile.cxx @@ -137,6 +137,7 @@ static OUString ConstructTempDir_Impl( const OUString* pParent, bool bCreatePare } #else (void) pParent; + (void) bCreateParentDirs; #endif if ( aName.isEmpty() ) _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
