aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/ttp21.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.pt/ttp21.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.pt/ttp21.C4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/ttp21.C b/gcc/testsuite/g++.old-deja/g++.pt/ttp21.C
index c1a4fd0cf36..f0b41bf3f56 100644
--- a/gcc/testsuite/g++.old-deja/g++.pt/ttp21.C
+++ b/gcc/testsuite/g++.old-deja/g++.pt/ttp21.C
@@ -18,13 +18,13 @@ template<template<class> class D,class E> class C : D<E>
template<template<class> class D,class E> int C<D,E>::g()
{
- return f();
+ return this->f();
}
class E : C<D,int>
{
public:
- int h() { return g(); }
+ int h() { return this->g(); }
};
int main()