summaryrefslogtreecommitdiffstats
path: root/sc/inc
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2017-08-15 09:08:42 +0300
committerTor Lillqvist <tml@collabora.com>2017-08-15 10:06:08 +0300
commitb051f4baa9f25e5d00fca941162b4515c76331ec (patch)
treed7ee7a713211027440d749459a42bfd4acbb57fc /sc/inc
parentRemoving old SfxItemSet::getHash usage (diff)
downloadcore-b051f4baa9f25e5d00fca941162b4515c76331ec.tar.gz
core-b051f4baa9f25e5d00fca941162b4515c76331ec.zip
tdf#96099: Get rid of one more pointless typedef
Change-Id: I669b020f2f251ef14cbfff78f6e186876ea0127c
Diffstat (limited to 'sc/inc')
-rw-r--r--sc/inc/lookupcache.hxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/sc/inc/lookupcache.hxx b/sc/inc/lookupcache.hxx
index 905df00e5860..ef9d1521fad1 100644
--- a/sc/inc/lookupcache.hxx
+++ b/sc/inc/lookupcache.hxx
@@ -182,8 +182,7 @@ private:
}
};
- typedef std::unordered_map< QueryKey, QueryCriteriaAndResult, QueryKey::Hash > QueryMap;
- QueryMap maQueryMap;
+ std::unordered_map< QueryKey, QueryCriteriaAndResult, QueryKey::Hash > maQueryMap;
ScRange maRange;
ScDocument * mpDoc;