MISRA C++:2023 Rule 6.5.1
描述
A function or object with external linkage should be introduced in a header file. 1
理由
如果您在头文件中声明一个函数或对象,那么很显然您打算在多个翻译单元中访问该函数或对象。如果您打算在单个翻译单元中访问该函数或对象,请将其声明为 static 或在未命名的命名空间中进行声明。
故障排除
如果您预期会出现违规,而 Polyspace® 未报告该违规,请参阅诊断为何编码规范违规未按预期显示。
示例
检查信息
| 组:基本概念 |
| 类别:建议 |
PQL 名称:std.misra_cpp_2023.R6_5_1 |
版本历史记录
在 R2024b 中推出
1 All MISRA coding rules and directives are © Copyright The MISRA Consortium Limited 2021.
The MISRA coding standards referenced in the Polyspace Bug Finder™ documentation are from the following MISRA standards:
MISRA C:2004
MISRA C:2012
MISRA C:2023
MISRA C++:2008
MISRA C++:2023
MISRA and MISRA C are registered trademarks of The MISRA Consortium Limited 2021.