このコードをコンパイルしようとすると:
template <class URNG>
struct Dumb : Brain<Dumb, URNG>
{
Move operator()(const Rat<Dumb, URNG>& rat, URNG&& urng)
{
Move move;
move.x = 1;
move.y = 0;
//rat.look(1, 2);
//rat.getDna(35);
return move;
}
};
clang 3.2.7 raise、この奇妙なエラーがわかりません:
main.cpp:10:28: error: template argument for template template parameter must be a class template or type alias template
Move operator()(const Rat<Dumb, URNG>& rat, URNG&& urng)
^
ダムはクラステンプレートですよね?
コメントで尋ねられたように、これはラットがどのように見えるかです:
template <template <class> class BRAIN, class URNG>
class Rat
{
//...
}