diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-02-26 15:31:10 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-02-26 15:31:10 +0000 |
commit | 6b9a39d5b96d542564400345a367e07c9873365b (patch) | |
tree | e7d04da175c18230ae71e4f73c05dd15ada98d6e | |
parent | ddf955f759b189e6b0fc88d39edd730ee8776483 (diff) | |
download | ATCD-6b9a39d5b96d542564400345a367e07c9873365b.tar.gz |
ChangeLogTag:Mon Feb 26 09:29:36 2001 Carlos O'Ryan <coryan@cs.wustl.edu>
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-02a | 7 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-03a | 7 | ||||
-rw-r--r-- | ace/RB_Tree.h | 2 |
4 files changed, 19 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog index 7ac9c6ead11..41cd6abd62b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Mon Feb 26 09:29:36 2001 Carlos O'Ryan <coryan@cs.wustl.edu> + + * ace/RB_Tree.h: + Fully qualified enum name. This fixes problems on gcc-272 builds. + Mon Feb 26 00:19:28 2001 Darrell Brunsch <brunsch@uci.edu> Time to do some spring cleaning... @@ -106,7 +111,7 @@ Mon Feb 26 00:19:28 2001 Darrell Brunsch <brunsch@uci.edu> * tests/Upgradable_RW_Test.dsp: Removed the Alpha configurations. I don't think we've - actually looked at these for over a year, and they are + actually looked at these for over a year, and they are missing from a lot of projects. Thankfully, they are easy to recreate if they are needed. diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a index 7ac9c6ead11..41cd6abd62b 100644 --- a/ChangeLogs/ChangeLog-02a +++ b/ChangeLogs/ChangeLog-02a @@ -1,3 +1,8 @@ +Mon Feb 26 09:29:36 2001 Carlos O'Ryan <coryan@cs.wustl.edu> + + * ace/RB_Tree.h: + Fully qualified enum name. This fixes problems on gcc-272 builds. + Mon Feb 26 00:19:28 2001 Darrell Brunsch <brunsch@uci.edu> Time to do some spring cleaning... @@ -106,7 +111,7 @@ Mon Feb 26 00:19:28 2001 Darrell Brunsch <brunsch@uci.edu> * tests/Upgradable_RW_Test.dsp: Removed the Alpha configurations. I don't think we've - actually looked at these for over a year, and they are + actually looked at these for over a year, and they are missing from a lot of projects. Thankfully, they are easy to recreate if they are needed. diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a index 7ac9c6ead11..41cd6abd62b 100644 --- a/ChangeLogs/ChangeLog-03a +++ b/ChangeLogs/ChangeLog-03a @@ -1,3 +1,8 @@ +Mon Feb 26 09:29:36 2001 Carlos O'Ryan <coryan@cs.wustl.edu> + + * ace/RB_Tree.h: + Fully qualified enum name. This fixes problems on gcc-272 builds. + Mon Feb 26 00:19:28 2001 Darrell Brunsch <brunsch@uci.edu> Time to do some spring cleaning... @@ -106,7 +111,7 @@ Mon Feb 26 00:19:28 2001 Darrell Brunsch <brunsch@uci.edu> * tests/Upgradable_RW_Test.dsp: Removed the Alpha configurations. I don't think we've - actually looked at these for over a year, and they are + actually looked at these for over a year, and they are missing from a lot of projects. Thankfully, they are easy to recreate if they are needed. diff --git a/ace/RB_Tree.h b/ace/RB_Tree.h index d6633fd0568..12e127f7a00 100644 --- a/ace/RB_Tree.h +++ b/ace/RB_Tree.h @@ -443,7 +443,7 @@ protected: * or EXACT if an exactly matching node already exists. */ ACE_RB_Tree_Node<EXT_ID, INT_ID> *find_node (const EXT_ID &k, - RB_SearchResult &result); + ACE_RB_Tree_Base::RB_SearchResult &result); /// Rebalance the tree after insertion of a node. void RB_rebalance (ACE_RB_Tree_Node<EXT_ID, INT_ID> * x); |