summaryrefslogtreecommitdiff
path: root/ACE/tests/Compiler_Features_12_Test.cpp
diff options
context:
space:
mode:
authorolli <olli@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2009-08-03 20:45:13 +0000
committerolli <olli@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2009-08-03 20:45:13 +0000
commita51db3317c1a4d0bfc1d67d4c5a05c74370f3a99 (patch)
treef0ec0659c951f6ac7289f27bb39897a427d0ecb7 /ACE/tests/Compiler_Features_12_Test.cpp
parente2c6b5e2de172a7f0cc757b6142b8ffce8ed7ffe (diff)
downloadATCD-a51db3317c1a4d0bfc1d67d4c5a05c74370f3a99.tar.gz
ChangeLogTag: Mon Aug 3 20:42:57 UTC 2009 Olli Savia <ops@iki.fi>
Diffstat (limited to 'ACE/tests/Compiler_Features_12_Test.cpp')
-rw-r--r--ACE/tests/Compiler_Features_12_Test.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/ACE/tests/Compiler_Features_12_Test.cpp b/ACE/tests/Compiler_Features_12_Test.cpp
index ffe095d6010..39c3c224a6a 100644
--- a/ACE/tests/Compiler_Features_12_Test.cpp
+++ b/ACE/tests/Compiler_Features_12_Test.cpp
@@ -17,14 +17,14 @@
ACE_RCSID(tests, Compiler_Features_12_Test, "$Id$")
template<typename T>
-struct pair
+struct Pair
{
T x1;
T x2;
};
template<typename T>
-struct triple
+struct Triple
{
T t1;
T t2;
@@ -46,14 +46,12 @@ run_main (int, ACE_TCHAR *[])
// failure
int status = 0;
- Array<int, pair> pairs;
+ Array<int, Pair> pairs;
pairs.array[0].x1 = 0;
- Array<int, triple> triples;
+ Array<int, Triple> triples;
triples.array[1].t3 = 0;
ACE_END_TEST;
return status;
}
-
-