Content deleted Content added
→Example: correct typo in id derived/Derived since C++ is case sensitive |
|||
Line 3:
==Example==
// The Curiously Recurring Template Pattern (CRTP)
struct derived : base<
{
// ...
Line 21:
};
struct
{
void implementation()
};
|