Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/laysakura/effectivemoderncpp
手を動かしながら読むEffective Modern C++
https://github.com/laysakura/effectivemoderncpp
Last synced: 17 days ago
JSON representation
手を動かしながら読むEffective Modern C++
- Host: GitHub
- URL: https://github.com/laysakura/effectivemoderncpp
- Owner: laysakura
- Created: 2015-10-19T15:41:20.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-10-20T05:26:30.000Z (about 9 years ago)
- Last Synced: 2024-04-15T12:50:10.767Z (7 months ago)
- Language: C++
- Size: 125 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# このレポジトリ
"Effective Mordern C++" を手を動かしながら読む。
# 動かし方
一部の項目で、Boostが必要なのでインストール。
```bash
brew install boost
```使っているコンパイラが `-std=c++14` に対応していない場合はバージョンアップ。
```bash
brew tap homebrew/versions
brew install homebrew/versions/llvm36
```あとはビルドして実行。
```bash
cmake .
```コンパイラを明示的に指定する場合は
```bash
cmake -DCMAKE_CXX_COMPILER=/usr/local/bin/clang++-3.6 .
```make
./item01
== f_case1_rT() ==
---
param's type: int&
T: int
...
```