我与一些遗产法典合作,并试图将其编成文。 最初是在视力室建造的,其编辑没有达到标准。 任何途径,现在我穿过固定的法典,我穿过在全球宣布的模版功能。 我发现错误:
/home/blah/blah;/blah.h:78: error: there are no arguments to ‘Clip’ that depend on a template parameter, so a declaration of ‘Clip’ must be available
我在这样作之前就能够通过做我的地图集来纠正这一错误: 然而,由于它没有范围,我如何解决这个问题?
更新:此处是口头功能声明:
template<class T> inline T Clip( T x, T bot, T top )
{ return(( x>=bot && x<=top ) ? x : (( x<bot ) ? bot : top )); }
Clip:
src_row = Clip( dst_row + h, 0, SR );
//dst_row + h, 0, SR are all int s... does that help?
//btw, love the quick responses, thanks.
电话和声明有不同的卷宗。