with the following code (a boiled-down version of my original code)
#include <iostream>
#include <cmath>
template <typename> class A; // edit 1 following Mark & Matthieu
template <typename X> class A {
X a;
template <typename> friend class A; // edit 1 following Mark & Matthieu
public:
A(X x) : a(x) {}
X get() const { return a; } // edit 2 to avoid using A<Y>::a
template <typename Y>
auto diff(A<Y> const& y) const
-> decltype(a - y.a) // original code causing error with gcc
-> typename std::common_type<X, Y>::type // alternative following Rook
-> decltype(this->get() - // edit 3 not using A<X>::a
y.get()) // edit 2 not using A<Y>::a
{ return a - y.get(); }
};
template <typename X, typename Y>
inline auto dist(A<X> const& x, A<Y> const& y) -> decltype(std::abs(x.diff(y)))
{ return std::abs(x.diff(y)); }
int main()
{
A<double> x(2.0), y(4.5);
std::cout << " dist(x,y)=" << dist(x,y) << '\n'; // <-- error here
}
I get the following error with gcc 4.7.0:
test.cc: In function
decltype (std::abs(x.diff(y))) dist(const A<X>&, const A<Y>&)[withX = double; Y = double; decltype (std::abs(x.diff(y))) = double]’:test.cc:5:5: error:
double A<double>::ais privatehighlighted line: error: within this context
This error message is obviously not very helpful. Is there an error in my code? Or is this a problem with the compiler?
EDIT1: the friend declaration didn't help.
EDIT2: avoiding using A<Y>::a didn't help either.
EDIT3: together with EDIT2 finally fixed the problem. The decltype() in the definition of dist() requires the decltype() for A<X>::diff(), which in turn used A<X>::a, which is private in the first context.
EDTI4: Rook's suggestion of using typename std::common_type<X,Y>::type also works!
EDIT5: but see Jonathan Wakely's answer to this question

std::common_type<X, Y>be a more appropriate type fordiff()here? It looks like it should be, but I was unable to get it compiling in either gcc 4.4 or vs2010... – Rook Jun 15 '12 at 15:37decltypeshould later be allowed in the body. It's inconsistent. – Matthieu M. Jun 15 '12 at 17:42