aboutsummaryrefslogtreecommitdiffstats
path: root/test/cedet/tests/testpolymorph.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/cedet/tests/testpolymorph.cpp')
-rw-r--r--test/cedet/tests/testpolymorph.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/cedet/tests/testpolymorph.cpp b/test/cedet/tests/testpolymorph.cpp
index 493b4344c17..2108da14e56 100644
--- a/test/cedet/tests/testpolymorph.cpp
+++ b/test/cedet/tests/testpolymorph.cpp
@@ -1,6 +1,6 @@
1/** testpolymorph.cpp --- A sequence of polymorphism examples. 1/** testpolymorph.cpp --- A sequence of polymorphism examples.
2 * 2 *
3 * Copyright (C) 2009-2011 Free Software Foundation, Inc. 3 * Copyright (C) 2009-2012 Free Software Foundation, Inc.
4 * 4 *
5 * Author: Eric M. Ludlam <eric@siege-engine.com> 5 * Author: Eric M. Ludlam <eric@siege-engine.com>
6 * 6 *
@@ -50,7 +50,7 @@ namespace fcn_poly {
50 50
51} 51}
52 52
53// Test 3 - Methods w/ differet arg lists. 53// Test 3 - Methods w/ different arg lists.
54class meth_poly { 54class meth_poly {
55public: 55public:
56 int pm_meth(void) { 56 int pm_meth(void) {
@@ -83,7 +83,7 @@ namespace template_partial_spec {
83 }; 83 };
84} 84}
85 85
86// Test 5 - Templates w/ full specicialization which may or may not share 86// Test 5 - Templates w/ full specialization which may or may not share
87// common functions. 87// common functions.
88namespace template_full_spec { 88namespace template_full_spec {
89 template <typename T> class test 89 template <typename T> class test
@@ -128,4 +128,3 @@ namespace template_multiple_spec {
128 128
129 129
130// End of polymorphism test file. 130// End of polymorphism test file.
131