add_varargs example

This commit is contained in:
badair
2016-04-07 23:52:55 -05:00
parent 47246cfdba
commit 8422a94dfe
41 changed files with 309 additions and 101 deletions

View File

@@ -32,7 +32,7 @@ int main() {
using test = ct::add_const_qualifier<pmf>;
static_assert(std::is_same<test, expect>::value, "");
} {
// add_const_qualifier can also be used to create "abominable"
// add_const_qualifier can also be used with "abominable"
// function types.
using f = void();
using expect = void() const;