Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 8 days 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 (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-03T19:13:40.000Z (about 9 years ago)
- Last Synced: 2023-03-24T18:56:15.773Z (over 1 year ago)
- Topics: exercise
- Language: C++
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# C++ Template Metaprogramming [![Build Status](https://travis-ci.org/kdungs/exercises-cpp-tmp.svg?branch=master)](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`.