summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-07-18 11:19:25 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-07-19 09:43:02 +0200
commit3c479f6569dc079f5fb85006bbfd9e09e43d712d (patch)
tree9b728820757758fae6237a24895a5450b85b7fa3
parentcid#1448527 Unchecked return value (diff)
downloadcore-3c479f6569dc079f5fb85006bbfd9e09e43d712d.tar.gz
core-3c479f6569dc079f5fb85006bbfd9e09e43d712d.zip
cid#1448495 Unchecked return value
Change-Id: I8a7f347d8f3ff6195b10e5559ff0682734c54eaf Reviewed-on: https://gerrit.libreoffice.org/75900 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r--helpcompiler/inc/HelpCompiler.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/helpcompiler/inc/HelpCompiler.hxx b/helpcompiler/inc/HelpCompiler.hxx
index 91c1b2f59e65..2b4a6bad049d 100644
--- a/helpcompiler/inc/HelpCompiler.hxx
+++ b/helpcompiler/inc/HelpCompiler.hxx
@@ -63,7 +63,7 @@ namespace fs
OString tmp(in.c_str());
OUString ustrSystemPath(OStringToOUString(tmp, getThreadTextEncoding()));
osl::File::getFileURLFromSystemPath(ustrSystemPath, data);
- osl::File::getAbsoluteFileURL(sWorkingDir, data, data);
+ (void)osl::File::getAbsoluteFileURL(sWorkingDir, data, data);
}
path(const std::string &FileURL)
{