Skip to content

Instantly share code, notes, and snippets.

View mattkretz's full-sized avatar

Matthias Kretz mattkretz

View GitHub Profile
@mattkretz
mattkretz / .gitconfig
Last active November 27, 2015 11:26 — forked from ErisDS/.gitconfig
Changelog generator: add this to your ~/.gitconfig file, and then run `git cl x.x.x..x.x.x+1` E.g. `git cl 0.7.1..0.7.2`
[alias]
cl = log --no-merges --pretty=tformat:'* [`%h`](https://github.com/VcDevel/Vc/commit/%h) %s - %an'
#include <type_traits>
#include <utility>
template<typename F, typename A>
std::true_type test(int bla);
template<typename F, typename A>
std::false_type test(...);
template<typename F, typename A>