当前位置: 技术问答>linux和unix
informix 数据库 warning
来源: 互联网 发布时间:2014-10-27
本文导语: // file--a.ec function1(id) $int id; { } function2(id) $int id; { } informix 数据库 用 esql -O -c a.ec编译时,出现下列警告,我想在不改变变量名的情况下,不出现警告,该如何处理 esqlc: "a.ec", line 7: Warning -33011: Current declaration ...
// file--a.ec
function1(id)
$int id;
{ }
function2(id)
$int id;
{ }
informix 数据库
用 esql -O -c a.ec编译时,出现下列警告,我想在不改变变量名的情况下,不出现警告,该如何处理
esqlc: "a.ec", line 7: Warning -33011: Current declaration of 'id' hides previous declaration.
1 warning(s)
function1(id)
$int id;
{ }
function2(id)
$int id;
{ }
informix 数据库
用 esql -O -c a.ec编译时,出现下列警告,我想在不改变变量名的情况下,不出现警告,该如何处理
esqlc: "a.ec", line 7: Warning -33011: Current declaration of 'id' hides previous declaration.
1 warning(s)
|
在什么地方有重定义了吧 别管warning , 编译过去了吗 ? 实在不行, 换个变量名看看