Recently, I meet something in other's source code. I don't quite understand the template in C++. Could you help me it?
struct my_grammar : public grammar<my_grammar>
{
...
};
Why my_grammar can be used as a type parameter like it?
Best Regards,