summaryrefslogtreecommitdiff
path: root/idlc
diff options
context:
space:
mode:
Diffstat (limited to 'idlc')
-rw-r--r--idlc/inc/astinterface.hxx4
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;
};