diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-08-17 09:26:16 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-08-17 14:11:12 +0200 |
commit | dd6db74abddfe27671c2593eefefa871466b02f5 (patch) | |
tree | 8d7c9f5d34d1faefec4ff550add51a263b1c4fd6 /idlc/inc | |
parent | 28beaffba6a0ecaf351c84bed41443a6721d85b6 (diff) |
inline some use-once typedefs
Change-Id: I683175c1e788a2a4cfec9504dc8dc3ebfee7c5de
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100858
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'idlc/inc')
-rw-r--r-- | idlc/inc/astinterface.hxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/idlc/inc/astinterface.hxx b/idlc/inc/astinterface.hxx index b83c79657252..7e3e1e30bad6 100644 --- a/idlc/inc/astinterface.hxx +++ b/idlc/inc/astinterface.hxx @@ -32,8 +32,6 @@ class AstInterface : public AstType public: typedef std::vector< InheritedInterface > InheritedInterfaces; - typedef std::vector< AstInterface const * > DoubleInterfaceDeclarations; - struct DoubleMemberDeclaration { AstDeclaration const * first; AstDeclaration const * second; @@ -42,7 +40,7 @@ public: typedef std::vector< DoubleMemberDeclaration > DoubleMemberDeclarations; struct DoubleDeclarations { - DoubleInterfaceDeclarations interfaces; + std::vector< AstInterface const * > interfaces; DoubleMemberDeclarations members; }; |