summaryrefslogtreecommitdiff
path: root/idlc/inc
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-30 14:53:59 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-30 14:55:35 +0100
commit0555447cd09fa2851e51cd63543ebc7db0a72a1a (patch)
tree33aa6a26daa8196af7534de8cbc6adcefa195029 /idlc/inc
parent686611019fee67e130452ad0b4abe50647d948fb (diff)
FD_complex is unused
...since 8e71d9400bd350d63723c5489ddaadb3d3610baf "Remove UNOIDL 'array' and 'union' vaporware from idlc" Change-Id: Id4cdef900667cdac466a41e47c189e2d25a62065
Diffstat (limited to 'idlc/inc')
-rw-r--r--idlc/inc/idlc/fehelper.hxx13
1 files changed, 2 insertions, 11 deletions
diff --git a/idlc/inc/idlc/fehelper.hxx b/idlc/inc/idlc/fehelper.hxx
index 62566483435a..1af64561a128 100644
--- a/idlc/inc/idlc/fehelper.hxx
+++ b/idlc/inc/idlc/fehelper.hxx
@@ -27,23 +27,14 @@
class FeDeclarator
{
public:
- // Enum to denote types of declarators
- enum DeclaratorType
- {
- FD_simple, // Simple declarator
- FD_complex // Complex declarator (complex_part field used)
- };
-
- FeDeclarator(const OString& name, DeclaratorType declType, AstDeclaration* pComplPart);
+ FeDeclarator(const OString& name);
virtual ~FeDeclarator();
const OString& getName()
{ return m_name; }
bool checkType(AstDeclaration const * pType);
- AstType const * compose(AstDeclaration const * pDecl);
+ static AstType const * compose(AstDeclaration const * pDecl);
private:
- AstDeclaration* m_pComplexPart;
OString m_name;
- DeclaratorType m_declType;
};
typedef ::std::list< FeDeclarator* > FeDeclList;