summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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: