summaryrefslogtreecommitdiff
path: root/TAO/tests/Sequence_Unit_Tests/Bounded_Simple_Types.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Sequence_Unit_Tests/Bounded_Simple_Types.cpp')
-rw-r--r--TAO/tests/Sequence_Unit_Tests/Bounded_Simple_Types.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/tests/Sequence_Unit_Tests/Bounded_Simple_Types.cpp b/TAO/tests/Sequence_Unit_Tests/Bounded_Simple_Types.cpp
index 0365a9b57c3..e7ee0b86dc7 100644
--- a/TAO/tests/Sequence_Unit_Tests/Bounded_Simple_Types.cpp
+++ b/TAO/tests/Sequence_Unit_Tests/Bounded_Simple_Types.cpp
@@ -8,7 +8,7 @@
*
* @author Carlos O'Ryan
*/
-#include "sequence.hpp"
+#include "bounded_value_sequence.hpp"
struct Foo
{
@@ -20,14 +20,14 @@ CORBA::ULong const TEST_FOO_MAX = 64;
int main(int,char*[])
{
- typedef TAO::bounded_sequence<int,TEST_INT_MAX> int_sequence;
+ typedef TAO::bounded_value_sequence<int,TEST_INT_MAX> int_sequence;
int_sequence a;
int_sequence b(a);
a = b;
- typedef TAO::bounded_sequence<Foo,TEST_FOO_MAX> Foo_sequence;
+ typedef TAO::bounded_value_sequence<Foo,TEST_FOO_MAX> Foo_sequence;
Foo_sequence c;
Foo_sequence d(c);
@@ -40,5 +40,5 @@ int main(int,char*[])
// of all member function and thus tests the full class. This should
// work across all platforms, even on platforms that do not *require*
// explicit instantiation of templates.
-template class TAO::bounded_sequence<int,TEST_INT_MAX>;
-template class TAO::bounded_sequence<Foo,TEST_FOO_MAX>;
+template class TAO::bounded_value_sequence<int,TEST_INT_MAX>;
+template class TAO::bounded_value_sequence<Foo,TEST_FOO_MAX>;