From 3451ec76e1eb9ff5ddeed6e3f2acaecbb86ef65e Mon Sep 17 00:00:00 2001 From: badair Date: Fri, 8 Apr 2016 09:59:30 -0500 Subject: [PATCH] fixing typo --- example/calling_convention_cdecl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/calling_convention_cdecl.cpp b/example/calling_convention_cdecl.cpp index efccf50..35acacb 100644 --- a/example/calling_convention_cdecl.cpp +++ b/example/calling_convention_cdecl.cpp @@ -19,7 +19,7 @@ struct foo {}; int main() { - //depending on your platform, pmf may alrady have an implicit __cdecl + //depending on your platform, pmf may already have an implicit __cdecl using pmf = void(foo::*)(); using expect = void(__cdecl foo::*)(); using test = ct::add_calling_convention;