https://github.com/kdungs/exercises-cpp-tmp
My solutions to the exercises in “C++ Template Metaprogramming” by Abrahams and Gurtovoy.
https://github.com/kdungs/exercises-cpp-tmp
exercise
Last synced: 3 months ago
JSON representation
My solutions to the exercises in “C++ Template Metaprogramming” by Abrahams and Gurtovoy.
- Host: GitHub
- URL: https://github.com/kdungs/exercises-cpp-tmp
- Owner: kdungs
- Created: 2015-12-03T14:56:41.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-03T19:13:40.000Z (over 9 years ago)
- Last Synced: 2025-02-08T07:25:54.659Z (5 months ago)
- Topics: exercise
- Language: C++
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# C++ Template Metaprogramming [](https://travis-ci.org/kdungs/exercises-cpp-tmp)
My solutions to the exercises in the book by David Abrahams and Aleksey
Gurtovoy. Other than the book, I'm using C++11/14 where applicable. _Work in
progress_.```
mkdir build
cd build
cmake -GNinja ../
ninja
```You should get warnings about libraries with empty tables of content. That is
intended and fine, it means the code compiles which is all we care about here.
The actual tests are implemented in terms of `static_assert`.