You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
./channel.h:42:38: error: use of undeclared identifier 'channelColumns'
extern _Array_ptr<ulong> TOP : count(channelColumns);
^
This file contains global defs and channelColumns is defined soon after TOP (along with other counters). I assume the connection is made from usage in another file.
The text was updated successfully, but these errors were encountered:
similar to #524, but outside of function prototypes
3C will infer
: count(length)
bounds on arrays from related variables, but those variables may not be in the local scope. for example, from icecast:and the pre-converted code is:
from yacr2:
This file contains global defs and
channelColumns
is defined soon afterTOP
(along with other counters). I assume the connection is made from usage in another file.The text was updated successfully, but these errors were encountered: