google-runtime-int¶
查找 short
、long
和 long long
的使用情况,并建议用 u?intXX(_t)?
替换它们。
相应的风格指南规则:https://google.github.io/styleguide/cppguide.html#Integer_Types。
相应的 cpplint.py 检查:runtime/int。
选项¶
- UnsignedTypePrefix¶
指定无符号类型前缀的字符串。默认值为 uint。
- SignedTypePrefix¶
指定有符号类型前缀的字符串。默认值为 int。
- TypeSuffix¶
指定类型后缀的字符串。默认为空字符串。