From aa224dcf77fbbcb699bba283d45b9c7465af052b Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Sun, 21 Feb 2016 21:53:35 +0100 Subject: Fix possessive form of _library_ --- articles/2014-07-11_mapping_arrays_using_tuples_in_cpp11.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'articles/2014-07-11_mapping_arrays_using_tuples_in_cpp11.md') diff --git a/articles/2014-07-11_mapping_arrays_using_tuples_in_cpp11.md b/articles/2014-07-11_mapping_arrays_using_tuples_in_cpp11.md index a2fc0b3..6a98630 100644 --- a/articles/2014-07-11_mapping_arrays_using_tuples_in_cpp11.md +++ b/articles/2014-07-11_mapping_arrays_using_tuples_in_cpp11.md @@ -27,7 +27,7 @@ struct IndexSequence { ~~~ {: .language-cpp} -This is achieved by the [`IndexSequence`](https://github.com/KnairdA/InputXSLT/blob/49e2010b489ab6d5516a9abd896c67738e0dc1cc/src/support/type/sequence.h) template above by recursively specializing the `Sequence` template using static recursion controlled by the standard libraries template metaprogramming utility template `std::conditional`. This means that e.g. the type `Sequence<0, 1, 2, 3>` can also be defined as `IndexSequence<4>::type`. +This is achieved by the [`IndexSequence`](https://github.com/KnairdA/InputXSLT/blob/49e2010b489ab6d5516a9abd896c67738e0dc1cc/src/support/type/sequence.h) template above by recursively specializing the `Sequence` template using static recursion controlled by the standard library's template metaprogramming utility template `std::conditional`. This means that e.g. the type `Sequence<0, 1, 2, 3>` can also be defined as `IndexSequence<4>::type`. Now all that is required to accomplish the goal is instantiating the sequence type and passing it to a variadic member template as [follows](https://github.com/KnairdA/InputXSLT/blob/master/src/function/base.h): -- cgit v1.2.3