在 [docs/cpp/modern_cpp/type_traits.md](https://github.com/imarvinle/CSGuide/blob/ba21398cc44e335c749c01b7478e1750588c49e6/docs/cpp/modern_cpp/type_traits.md) 展示如何实现 `is_integral` 模板时,使用了 `std::remove_cv` 模板,这是不应该使用的。对于 `int` 和 `int&` 两个类型,`std::is_integral<T>::value` 分别是真和假。 见 godbolt [例子](https://godbolt.org/z/d3Ws3bqPW)。