Merge pull request #68 from theidexisted/patch-3

Fix typo in doc
This commit is contained in:
Ion Gaztañaga
2021-11-17 15:46:33 +01:00
committed by GitHub

View File

@@ -376,7 +376,7 @@ using:
struct my_tag1; struct my_tag1;
struct my_tag2; struct my_tag2;
typedef list_base_hook< tag<my_tag> > BaseHook; typedef list_base_hook< tag<my_tag1> > BaseHook;
typedef list_base_hook< tag<my_tag2> > BaseHook2; typedef list_base_hook< tag<my_tag2> > BaseHook2;
class Foo : public BaseHook, public BaseHook2 class Foo : public BaseHook, public BaseHook2
{ /**/ }; { /**/ };