summaryrefslogtreecommitdiff
path: root/tests/RB_Tree_Test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/RB_Tree_Test.cpp')
-rw-r--r--tests/RB_Tree_Test.cpp15
1 files changed, 5 insertions, 10 deletions
diff --git a/tests/RB_Tree_Test.cpp b/tests/RB_Tree_Test.cpp
index 0ee92282087..c8158eaf9d0 100644
--- a/tests/RB_Tree_Test.cpp
+++ b/tests/RB_Tree_Test.cpp
@@ -10,12 +10,12 @@
//
// = DESCRIPTION
// This is a test to verify and illustrate the use of the
-// ACE_RB_Tree ACE_RB_Tree_Iterator, and
-// ACE_RB_Tree_Reverse_Iterator classes. Two different key and
+// <ACE_RB_Tree ACE_RB_Tree_Iterator> and
+// <ACE_RB_Tree_Reverse_Iterator> classes. Two different key and
// item types are used in order to demonstrate specialization of
-// the ACE_Less_Than comparison function object template: int (for
-// which the native < operator is sufficient), and const char *
-// (for which < operator semantics must be replaced by strcmp
+// the <ACE_Less_Than> comparison function object template: int
+// (for which the native < operator is sufficient), and const char
+// * (for which < operator semantics must be replaced by strcmp
// semantics). An RB tree for each of the four possible type
// parameter permutations over int and const char * is constructed
// and filled in, and the resulting order is checked via an
@@ -32,11 +32,6 @@
ACE_RCSID(tests, RB_Tree_Test, "$Id$")
-#if defined(__BORLANDC__) && __BORLANDC__ >= 0x0530
-USELIB("..\ace\aced.lib");
-//---------------------------------------------------------------------------
-#endif /* defined(__BORLANDC__) && __BORLANDC__ >= 0x0530 */
-
// Type definitions for the four distinct parameterizations of the
// test.