标签: c++ c gcc visual-c++ compiler-warnings
是否存在与GCC的const cat = this.format.header[0]; const count = this.format.header[1]; const obj = this.data.reduce((ac,{[cat]:cat, [count]:count}) => (ac[cat] = count,ac),{}); 等效的Visual C?
const cat = this.format.header[0]; const count = this.format.header[1]; const obj = this.data.reduce((ac,{[cat]:cat, [count]:count}) => (ac[cat] = count,ac),{});
我在寻找问题,但未找到结果。
Attribute definition at GNU docs。
答案 0 :(得分:1)
在C ++中,自C ++ 17起提供了标准的[[nodiscard]]属性,否则您可以使用_Check_return_ SAL annotation。
[[nodiscard]]
_Check_return_