diff options
author | Adrian Kummerlaender | 2015-02-13 21:54:48 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2015-02-13 21:54:48 +0100 |
commit | 73680466149c7aad21de558b7acc11dfa05183d2 (patch) | |
tree | c8ef1679a4688ac137d695a8e89fdb1d71595a02 /example | |
parent | 9769b8fe1956b080c1f249f8c17862c0b5f5e4ef (diff) | |
download | TypeAsValue-73680466149c7aad21de558b7acc11dfa05183d2.tar TypeAsValue-73680466149c7aad21de558b7acc11dfa05183d2.tar.gz TypeAsValue-73680466149c7aad21de558b7acc11dfa05183d2.tar.bz2 TypeAsValue-73680466149c7aad21de558b7acc11dfa05183d2.tar.lz TypeAsValue-73680466149c7aad21de558b7acc11dfa05183d2.tar.xz TypeAsValue-73680466149c7aad21de558b7acc11dfa05183d2.tar.zst TypeAsValue-73680466149c7aad21de558b7acc11dfa05183d2.zip |
Renamed `Apply`'s template alias to `function`
* `type` is used to represent evaluation of a template
* accessing the `function` doesn't evaluate it as it is the template itself
Diffstat (limited to 'example')
-rw-r--r-- | example/prime/prime.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/prime/prime.cc b/example/prime/prime.cc index e4a58d6..e89d2a4 100644 --- a/example/prime/prime.cc +++ b/example/prime/prime.cc @@ -31,7 +31,7 @@ template < typename Base > using removeMultiplesOf = tav::Remove< - tav::Apply<isMultipleOf, tav::_0, Base>::template type, + tav::Apply<isMultipleOf, tav::_0, Base>::template function, Candidates >; |