summaryrefslogtreecommitdiff
path: root/modules/TAO/TAO_IDL/util/utl_err.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/TAO/TAO_IDL/util/utl_err.cpp')
-rw-r--r--modules/TAO/TAO_IDL/util/utl_err.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/TAO/TAO_IDL/util/utl_err.cpp b/modules/TAO/TAO_IDL/util/utl_err.cpp
index 03d5999c4b2..9a3dd6601da 100644
--- a/modules/TAO/TAO_IDL/util/utl_err.cpp
+++ b/modules/TAO/TAO_IDL/util/utl_err.cpp
@@ -398,6 +398,12 @@ parse_state_to_error_message (IDL_GlobalData::ParseState ps)
return "Illegal syntax or missing type following '}' in template module";
case IDL_GlobalData::PS_TmplModuleBodySeen:
return "Illegal syntax following template module body statement(s)";
+ case IDL_GlobalData::PS_InstModuleSeen:
+ return "Illegal syntax following following '<' of module instantiation";
+ case IDL_GlobalData::PS_InstModuleArgsSeen:
+ return "Illegal syntax following following template args";
+ case IDL_GlobalData::PS_InstModuleIDSeen:
+ return "Illegal syntax following following instantiated module identifier";
case IDL_GlobalData::PS_ValueTypeSeen:
return "Missing interface identifier following VALUETYPE keyword";
case IDL_GlobalData::PS_ValueTypeForwardSeen: