Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Force 4.0 Reference - 3252 array not terminated http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 3252                Array not terminated
------------------------------------------------------------------------------
 Description
   This error occurs when the closing bracket (]) in an array declaration
   is missing, or the array length specification contains an expression,
   like in the following examples

      #define ARRAY_LENGTH 1

      vardef
         uint aNums1[ 3                    // no bracket
         uint aNums2[ 1 + 2 ]              // expression
         uint aNums3[ ARRAY_LENGTH + 1 ]   // expression with macro
      enddef


 Solution
   Supply the ending bracket for the array if missing. Eliminate
   expressions from array declarations.

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson