File diff r23552:91d98b9489aa → r23553:9f01781fc43d
src/script/squirrel_helper_type.hpp
Show inline comments
 
@@ -14,7 +14,7 @@
 

	
 
/** Definition of a simple array. */
 
struct Array {
 
	int32 size;    ///< The size of the array.
 
	size_t size;   ///< The size of the array.
 
	int32 array[]; ///< The data of the array.
 
};