次のコードはコンパイルされず、理由はわかりません。
#include <type_traits>
// Base class definition
template<template<typename> class CRTP, typename T> class Base
{
// Friend function declaration
public:
template<template<typename> class CRTP0, typename T0, class>
friend int func(const Base<CRTP0, T0>& rhs);
// Protected test variable
protected:
int n;
};
// Friend function definition
template<template<typename> class CRTP0, typename T0,
class = typename std::enable_if<true>::type>
int func(const Base<CRTP0, T0>& rhs)
{
return rhs.n;
}
// Derived class definition
template<typename T> class Derived : public Base<Derived, T> {};
// Main
int main()
{
Derived<int> x;
func(x);
return 0;
}
GCC 4.6.2(およびLWSのGCC 4.7.1)は、次のように指示しています。
error: 'int Base<Derived, int>::n' is protected
つまり、基本的に、友情は正しく検出されません。これは私のコードの抜粋にすぎないので、ここのように、friend関数の定義をクラス定義の外に置きたいと思います。それで、問題は何ですか、そしてそれをどのように解決するのですか?
編集:問題を切り分けてはるかに読みやすくするためにコードを変更しました。現在のenable_ifは常にtrueですが、私の実際のコードでは、「実際の」状態になります。ここでは、問題を切り分けるだけです。
EDIT2:liveworkspaceはここにあります:友人機能の問題