diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-07-18 11:19:25 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-07-19 09:43:02 +0200 |
commit | 3c479f6569dc079f5fb85006bbfd9e09e43d712d (patch) | |
tree | 9b728820757758fae6237a24895a5450b85b7fa3 /helpcompiler | |
parent | aab3c9be2234049cf848ddce57ccd507edd26e0e (diff) |
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>
Diffstat (limited to 'helpcompiler')
-rw-r--r-- | helpcompiler/inc/HelpCompiler.hxx | 2 |
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) { |