diff options
author | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2017-10-29 09:33:31 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-10-29 17:23:53 +0100 |
commit | feb6cfb1048925ab87485acc4357c3ac23ff944a (patch) | |
tree | 367aa77ad6767db9c9f74f7a48fe09e36f68a4a7 | |
parent | f0cc59c02e5d4e275f11c586239e7eb0012a9609 (diff) |
cppcheck: unusedVariable
Change-Id: I0fcfd512b7abce38a6865c93f6147658b7dfe493
Reviewed-on: https://gerrit.libreoffice.org/44020
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
-rw-r--r-- | vcl/unx/generic/fontmanager/fontmanager.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/vcl/unx/generic/fontmanager/fontmanager.cxx b/vcl/unx/generic/fontmanager/fontmanager.cxx index ccaf39bdd59b..b83ff5899d47 100644 --- a/vcl/unx/generic/fontmanager/fontmanager.cxx +++ b/vcl/unx/generic/fontmanager/fontmanager.cxx @@ -780,7 +780,6 @@ void PrintFontManager::initialize() void PrintFontManager::getFontList( ::std::vector< fontID >& rFontIDs ) { rFontIDs.clear(); - std::unordered_map< fontID, PrintFont* >::const_iterator it; for (auto const& font : m_aFonts) rFontIDs.push_back(font.first); |