summaryrefslogtreecommitdiff
path: root/TAO/tao/IOR_Parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/IOR_Parser.h')
-rw-r--r--TAO/tao/IOR_Parser.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/TAO/tao/IOR_Parser.h b/TAO/tao/IOR_Parser.h
index 0058a743a0e..4dffe43fa50 100644
--- a/TAO/tao/IOR_Parser.h
+++ b/TAO/tao/IOR_Parser.h
@@ -52,7 +52,7 @@ public:
/// Return 1 if @a ior_string starts with a prefix known to this IOR
/// parser
- virtual int match_prefix (const char *ior_string) const = 0;
+ virtual bool match_prefix (const char *ior_string) const = 0;
/**
* Parse the @a ior argument and return an object reference.
@@ -60,8 +60,7 @@ public:
* INV_OBJREF, etc.)
*/
virtual CORBA::Object_ptr parse_string (const char *ior,
- CORBA::ORB_ptr orb
- ACE_ENV_ARG_DECL)
+ CORBA::ORB_ptr orb)
ACE_THROW_SPEC ((CORBA::SystemException)) = 0;
};