diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-07-29 16:25:25 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-07-29 16:25:25 +0000 |
commit | 5b360aa94ff9b75a6cd4ea51fc4744eb541743f0 (patch) | |
tree | ed4dd0e5d4cc873a5667e593efa0cdacfc4f5517 /ace/Parse_Node.h | |
parent | d266b0ac08422260026b4830b397867135b4d29c (diff) | |
download | ATCD-5b360aa94ff9b75a6cd4ea51fc4744eb541743f0.tar.gz |
(handle,open_handle): removed "const" from ACE_SHLIB_HANDLE return value
Diffstat (limited to 'ace/Parse_Node.h')
-rw-r--r-- | ace/Parse_Node.h | 4 |
1 files changed, 2 insertions, 2 deletions
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_; |