summaryrefslogtreecommitdiff
path: root/idlc
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-02-16 09:51:07 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-02-16 12:42:04 +0200
commit63e0ffab01317210424023d70b49014e1ebe6e29 (patch)
treeef24bfc5cf1ab113246895e523dc24f6d68bca55 /idlc
parent3a3f223f5a931680fb0543ee732dd5e800d6850b (diff)
remove unused PS_OpCompleted from ParseState enum
Change-Id: I3a738e464051d0b810553bc62c8465d37505bc3c
Diffstat (limited to 'idlc')
-rw-r--r--idlc/inc/idlctypes.hxx1
-rw-r--r--idlc/source/errorhandler.cxx2
2 files changed, 0 insertions, 3 deletions
diff --git a/idlc/inc/idlctypes.hxx b/idlc/inc/idlctypes.hxx
index 931afbfb5c3d..8f6f799f11ff 100644
--- a/idlc/inc/idlctypes.hxx
+++ b/idlc/inc/idlctypes.hxx
@@ -176,7 +176,6 @@ enum ParseState
PS_OpTypeSeen, // Seen operation return type
PS_OpIDSeen, // Seen operation ID
PS_OpParsCompleted, // Completed operation param list
- PS_OpCompleted, // Completed operation statement
PS_OpSqSeen, // Seen '(' for operation
PS_OpQsSeen, // Seen ')' for operation
PS_OpParCommaSeen, // Seen ',' in list of op params
diff --git a/idlc/source/errorhandler.cxx b/idlc/source/errorhandler.cxx
index ed8f0cbd0801..3b4dfbaf864a 100644
--- a/idlc/source/errorhandler.cxx
+++ b/idlc/source/errorhandler.cxx
@@ -351,8 +351,6 @@ static const sal_Char* parseStateToMessage(ParseState state)
return "Illegal syntax or missing '(' after operation identifier";
case PS_OpParsCompleted:
return "Illegal syntax after operation parameter list";
- case PS_OpCompleted:
- return "Illegal syntax after operation declaration";
case PS_OpSqSeen:
return "Illegal syntax after operation parameter list '(' opener";
case PS_OpQsSeen: