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>
This commit is contained in:
Noel Grandin 2021-07-17 18:51:45 +02:00 committed by Noel Grandin
parent 371ae1cf23
commit e0ba91b7e8

View file

@ -1670,7 +1670,7 @@ private:
bool deep_;
std::mutex mutex_;
std::stack< Position > positions_;
std::stack< Position, std::vector<Position> > positions_;
OUString current_;
};