[Libreoffice-commits] core.git: sw/source
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Thu Aug 16 20:18:22 UTC 2018
sw/source/filter/inc/fltshell.hxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 8efdce75d96819d42bae2104169b74d67677c32e
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Thu Aug 16 17:05:16 2018 +0100
Commit: Caolán McNamara <caolanm at redhat.com>
CommitDate: Thu Aug 16 22:17:57 2018 +0200
std::deque->std::vector
Change-Id: Ia454ec1853bde1a19c6daafe5fef11bb633db080
Reviewed-on: https://gerrit.libreoffice.org/59211
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
Tested-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/sw/source/filter/inc/fltshell.hxx b/sw/source/filter/inc/fltshell.hxx
index 9a84dccaa3f3..3b84675a9a30 100644
--- a/sw/source/filter/inc/fltshell.hxx
+++ b/sw/source/filter/inc/fltshell.hxx
@@ -124,7 +124,7 @@ private:
SwFltControlStack(SwFltControlStack const&) = delete;
SwFltControlStack& operator=(SwFltControlStack const&) = delete;
- typedef std::deque<std::unique_ptr<SwFltStackEntry>> Entries;
+ typedef std::vector<std::unique_ptr<SwFltStackEntry>> Entries;
Entries m_Entries;
sal_uLong nFieldFlags;
More information about the Libreoffice-commits
mailing list