Thread: 5.7 DR2
View Single Post
  #4  
Old 04-26-2004, 02:00 PM
animepimp
Dragon
 
Join Date: Jan 2004
Posts: 860
Default

That message means that a variable with name i is getting declared twice in the same block of code. MOst likely this is because the code is declaring a temporary variable named i inside of a loop. This is legal to do and most mdoern compilers don't have a problem with it, but some older compilers declare variables for the whole method instead of the block of code and have trouble with doing this.
Reply With Quote