book: fix a minor typo (#83)

This commit is contained in:
wangb
2019-11-13 15:55:08 +08:00
committed by Ou Changkun
parent 8767bb89c4
commit 04420e835e

View File

@@ -575,7 +575,7 @@ extern template class std::vector<double>; // 不在该当前编译文件中实
std::vector<std::vector<int>> matrix; std::vector<std::vector<int>> matrix;
``` ```
这在传统C++编译器下是不能够被编译的,而 C++11 开始,连续的右尖括号将变得合法,并且能够顺利通过编译。甚至于下面这种写法都能够通过编译: 这在传统C++编译器下是不能够被编译的,而 C++11 开始,连续的右尖括号将变得合法,并且能够顺利通过编译。甚至于下面这种写法都能够通过编译:
```cpp ```cpp
template<bool T> template<bool T>