aboutsummaryrefslogtreecommitdiff
path: root/articles
diff options
context:
space:
mode:
authorAdrian Kummerlaender2015-03-07 16:10:11 +0100
committerAdrian Kummerlaender2015-03-07 16:10:11 +0100
commit11926172c3d49730d6922fcb41edc7feef4f7f45 (patch)
tree2f24b429d8e73e2071019caf3eb7b470691e94ff /articles
parentd3f6047d53bdf9154df3abeb6d2abcd06707df4e (diff)
downloadblog_content-11926172c3d49730d6922fcb41edc7feef4f7f45.tar
blog_content-11926172c3d49730d6922fcb41edc7feef4f7f45.tar.gz
blog_content-11926172c3d49730d6922fcb41edc7feef4f7f45.tar.bz2
blog_content-11926172c3d49730d6922fcb41edc7feef4f7f45.tar.lz
blog_content-11926172c3d49730d6922fcb41edc7feef4f7f45.tar.xz
blog_content-11926172c3d49730d6922fcb41edc7feef4f7f45.tar.zst
blog_content-11926172c3d49730d6922fcb41edc7feef4f7f45.zip
Updated _TypeAsValue_ source links to point to a specific commit
* added link to blog article to _TypeAsValue_ page
Diffstat (limited to 'articles')
-rw-r--r--articles/2015-03-06_using_scheme_as_a_metaphor_for_template_metaprogramming.md31
1 files changed, 16 insertions, 15 deletions
diff --git a/articles/2015-03-06_using_scheme_as_a_metaphor_for_template_metaprogramming.md b/articles/2015-03-06_using_scheme_as_a_metaphor_for_template_metaprogramming.md
index 436db77..bd14983 100644
--- a/articles/2015-03-06_using_scheme_as_a_metaphor_for_template_metaprogramming.md
+++ b/articles/2015-03-06_using_scheme_as_a_metaphor_for_template_metaprogramming.md
@@ -232,22 +232,23 @@ Finally I want to reference the [Boost MPL] library which supports everything an
[ConstList]: /page/const_list/
[TypeAsValue]: /page/type_as_value/
[SRFI-1]: http://srfi.schemers.org/srfi-1/srfi-1.html
-[`std::integral_constant`]: http://en.cppreference.com/w/cpp/types/integral_constant
-[`std::bind`]: http://en.cppreference.com/w/cpp/utility/functional/bind
-[`tav::Filter`]: https://github.com/KnairdA/TypeAsValue/blob/master/src/list/operation/higher/filter.h
-[`tav::Any`]: https://github.com/KnairdA/TypeAsValue/blob/master/src/list/operation/higher/query.h
-[`tav::Every`]: https://github.com/KnairdA/TypeAsValue/blob/master/src/list/operation/higher/query.h
-[`tav::Fold`]: https://github.com/KnairdA/TypeAsValue/blob/master/src/list/operation/higher/fold.h
-[`tav::Sort`]: https://github.com/KnairdA/TypeAsValue/blob/master/src/list/operation/higher/sort.h
-[`tav::Apply`]: https://github.com/KnairdA/TypeAsValue/blob/master/src/function/apply.h
-[`tav::detail::placeholder`]: https://github.com/KnairdA/TypeAsValue/blob/master/src/function/detail/placeholder.h
-[`tav::And`]: https://github.com/KnairdA/TypeAsValue/blob/master/src/operation/logic.h
-[`tav::Eval`]: https://github.com/KnairdA/TypeAsValue/blob/master/src/type.h
-[`tav::Pair`]: https://github.com/KnairdA/TypeAsValue/blob/master/src/pair.h
-[`tav::Cons`]: https://github.com/KnairdA/TypeAsValue/blob/master/src/list/cons.h
-[`tav::List`]: https://github.com/KnairdA/TypeAsValue/blob/master/src/list/list.h
-[`tav::Cond`]: https://github.com/KnairdA/TypeAsValue/blob/master/src/conditional/cond.h
[example applications]: https://github.com/KnairdA/TypeAsValue/tree/master/example
[Boost MPL]: http://www.boost.org/doc/libs/1_57_0/libs/mpl/doc/index.html
[Github]: https://github.com/KnairdA/TypeAsValue/
[cgit]: http://code.kummerlaender.eu/TypeAsValue/
+
+[`std::integral_constant`]: http://en.cppreference.com/w/cpp/types/integral_constant
+[`std::bind`]: http://en.cppreference.com/w/cpp/utility/functional/bind
+[`tav::Filter`]: https://github.com/KnairdA/TypeAsValue/blob/299781bccc5c7d1b212198b5a9a55ee9447603c5/src/list/operation/higher/filter.h
+[`tav::Any`]: https://github.com/KnairdA/TypeAsValue/blob/299781bccc5c7d1b212198b5a9a55ee9447603c5/src/list/operation/higher/query.h
+[`tav::Every`]: https://github.com/KnairdA/TypeAsValue/blob/299781bccc5c7d1b212198b5a9a55ee9447603c5/src/list/operation/higher/query.h
+[`tav::Fold`]: https://github.com/KnairdA/TypeAsValue/blob/299781bccc5c7d1b212198b5a9a55ee9447603c5/src/list/operation/higher/fold.h
+[`tav::Sort`]: https://github.com/KnairdA/TypeAsValue/blob/299781bccc5c7d1b212198b5a9a55ee9447603c5/src/list/operation/higher/sort.h
+[`tav::Apply`]: https://github.com/KnairdA/TypeAsValue/blob/299781bccc5c7d1b212198b5a9a55ee9447603c5/src/function/apply.h
+[`tav::detail::placeholder`]: https://github.com/KnairdA/TypeAsValue/blob/299781bccc5c7d1b212198b5a9a55ee9447603c5/src/function/detail/placeholder.h
+[`tav::And`]: https://github.com/KnairdA/TypeAsValue/blob/299781bccc5c7d1b212198b5a9a55ee9447603c5/src/operation/logic.h
+[`tav::Eval`]: https://github.com/KnairdA/TypeAsValue/blob/299781bccc5c7d1b212198b5a9a55ee9447603c5/src/type.h
+[`tav::Pair`]: https://github.com/KnairdA/TypeAsValue/blob/299781bccc5c7d1b212198b5a9a55ee9447603c5/src/pair.h
+[`tav::Cons`]: https://github.com/KnairdA/TypeAsValue/blob/299781bccc5c7d1b212198b5a9a55ee9447603c5/src/list/cons.h
+[`tav::List`]: https://github.com/KnairdA/TypeAsValue/blob/299781bccc5c7d1b212198b5a9a55ee9447603c5/src/list/list.h
+[`tav::Cond`]: https://github.com/KnairdA/TypeAsValue/blob/299781bccc5c7d1b212198b5a9a55ee9447603c5/src/conditional/cond.h