[c++]attribute

2021/04 29 17:04

[[noreturn]] 函数永远不会将控制交还调用点
[[deprecated]] 不鼓励使用
[[fallthrough]] 有意安排switch的break为空
[[nodiscard]] 禁止编译器告警:如果函数什么也不做,还返回值
[[maybe_unused]] 阻止编译器告警:某项未使用