diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2021-07-17 18:51:45 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-07-18 11:34:39 +0200 |
commit | e0ba91b7e8a2f0d949677db1708bb0e6d8534389 (patch) | |
tree | a784c9dd7ba3758fb9950205915b18fecc9191dc /cppuhelper | |
parent | 371ae1cf2307e5585f4f66f001c97d464cf44429 (diff) |
better to use a std::vector here
Change-Id: Ibd875907bc0618df3b27ed77625ff62c352019ba
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119109
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'cppuhelper')
-rw-r--r-- | cppuhelper/source/typemanager.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cppuhelper/source/typemanager.cxx b/cppuhelper/source/typemanager.cxx index 857018e204ec..b97d36d16aed 100644 --- a/cppuhelper/source/typemanager.cxx +++ b/cppuhelper/source/typemanager.cxx @@ -1670,7 +1670,7 @@ private: bool deep_; std::mutex mutex_; - std::stack< Position > positions_; + std::stack< Position, std::vector<Position> > positions_; OUString current_; }; |