aboutsummaryrefslogtreecommitdiff
path: root/src/function/detail/placeholder.h
diff options
context:
space:
mode:
authorAdrian Kummerlaender2015-03-07 16:14:11 +0100
committerAdrian Kummerlaender2015-03-07 16:14:11 +0100
commitcb2a79cd818fbfa50e7bdebd090e681a0073f9d5 (patch)
tree70c5a90977ae0772618be00dfb499eb5ee4cf63f /src/function/detail/placeholder.h
parent299781bccc5c7d1b212198b5a9a55ee9447603c5 (diff)
downloadTypeAsValue-cb2a79cd818fbfa50e7bdebd090e681a0073f9d5.tar
TypeAsValue-cb2a79cd818fbfa50e7bdebd090e681a0073f9d5.tar.gz
TypeAsValue-cb2a79cd818fbfa50e7bdebd090e681a0073f9d5.tar.bz2
TypeAsValue-cb2a79cd818fbfa50e7bdebd090e681a0073f9d5.tar.lz
TypeAsValue-cb2a79cd818fbfa50e7bdebd090e681a0073f9d5.tar.xz
TypeAsValue-cb2a79cd818fbfa50e7bdebd090e681a0073f9d5.tar.zst
TypeAsValue-cb2a79cd818fbfa50e7bdebd090e681a0073f9d5.zip
Changed `tav::Apply` implementation selection to template alias
* there is no reason to differ from the rest of the library and use inheritance in this instance * added link to blog article on the _Scheme metaphor_ to `README.md`
Diffstat (limited to 'src/function/detail/placeholder.h')
-rw-r--r--src/function/detail/placeholder.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/function/detail/placeholder.h b/src/function/detail/placeholder.h
index 8105de5..00818b7 100644
--- a/src/function/detail/placeholder.h
+++ b/src/function/detail/placeholder.h
@@ -13,7 +13,7 @@ namespace detail {
struct placeholder_tag { };
-template <int Index>
+template <std::size_t Index>
struct placeholder : placeholder_tag { };
template <typename Type>
@@ -28,8 +28,8 @@ struct resolve_placeholder {
};
template <
- typename Partials,
- int Index
+ typename Partials,
+ std::size_t Index
>
struct resolve_placeholder<Partials, placeholder<Index>> {
typedef Nth<Size<Index>, Partials> type;