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
Any array or constant can only be defined with an integer literal. The request is to allow using constants defined in the IDL as integers.
For example:
/** Max number of keys that the cache can store. */constuint32MAX_KEYS=24;
structCache {
uint32numKeys; /** Size the cache. */MyKey[MAX_KEYS] keyInfo; /** Info about type of keys available to store/get. */
};
interfaceIFoo {
methodfoo (outCachecache);
};