summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ace/Parse_Node.cpp4
-rw-r--r--ace/Parse_Node.h4
-rw-r--r--ace/Service_Record.h2
-rw-r--r--ace/Service_Record.i2
4 files changed, 6 insertions, 6 deletions
diff --git a/ace/Parse_Node.cpp b/ace/Parse_Node.cpp
index 42c1f392b9b..95de6ac8663 100644
--- a/ace/Parse_Node.cpp
+++ b/ace/Parse_Node.cpp
@@ -333,7 +333,7 @@ ACE_Location_Node::handle (const ACE_SHLIB_HANDLE h)
this->handle_ = h;
}
-const ACE_SHLIB_HANDLE
+ACE_SHLIB_HANDLE
ACE_Location_Node::handle (void) const
{
ACE_TRACE ("ACE_Location_Node::handle");
@@ -354,7 +354,7 @@ ACE_Location_Node::dispose (void) const
return this->must_delete_;
}
-const ACE_SHLIB_HANDLE
+ACE_SHLIB_HANDLE
ACE_Location_Node::open_handle (void)
{
ACE_TRACE ("ACE_Location_Node::open_handle");
diff --git a/ace/Parse_Node.h b/ace/Parse_Node.h
index e7ecc858fdd..05f95bb1323 100644
--- a/ace/Parse_Node.h
+++ b/ace/Parse_Node.h
@@ -167,7 +167,7 @@ public:
ACE_Location_Node (void);
virtual const void *symbol (void) = 0;
virtual void set_symbol (const void *h);
- const ACE_SHLIB_HANDLE handle (void) const;
+ ACE_SHLIB_HANDLE handle (void) const;
void handle (const ACE_SHLIB_HANDLE h);
const char *pathname (void) const;
void pathname (const char *h);
@@ -182,7 +182,7 @@ public:
// Declare the dynamic allocation hooks.
protected:
- const ACE_SHLIB_HANDLE open_handle (void);
+ ACE_SHLIB_HANDLE open_handle (void);
ACE_SHLIB_HANDLE handle_;
const void *symbol_;
diff --git a/ace/Service_Record.h b/ace/Service_Record.h
index 43d9230f1ce..525d53aee64 100644
--- a/ace/Service_Record.h
+++ b/ace/Service_Record.h
@@ -117,7 +117,7 @@ public:
void type (const ACE_Service_Type *,
int active = 1);
- const ACE_SHLIB_HANDLE handle (void) const;
+ ACE_SHLIB_HANDLE handle (void) const;
void handle (const ACE_SHLIB_HANDLE);
void suspend (void) const;
diff --git a/ace/Service_Record.i b/ace/Service_Record.i
index 51bd7de83e2..5246fa195e1 100644
--- a/ace/Service_Record.i
+++ b/ace/Service_Record.i
@@ -38,7 +38,7 @@ ACE_Service_Record::type (void) const
return this->type_;
}
-ACE_INLINE const ACE_SHLIB_HANDLE
+ACE_INLINE ACE_SHLIB_HANDLE
ACE_Service_Record::handle (void) const
{
ACE_TRACE ("ACE_Service_Record::handle");