Fix some compilation warnings and enable Windows JIT (#586)
This commit is contained in:
@ -35,7 +35,7 @@ typedef struct Vector {
|
||||
* @return true if success, false otherwise
|
||||
*/
|
||||
bool
|
||||
bh_vector_init(Vector *vector, uint32 init_length, uint32 size_elem);
|
||||
bh_vector_init(Vector *vector, size_t init_length, size_t size_elem);
|
||||
|
||||
/**
|
||||
* Set element of vector
|
||||
@ -104,7 +104,7 @@ bh_vector_remove(Vector *vector, uint32 index, void *old_elem_buf);
|
||||
*
|
||||
* @return return the size of the vector
|
||||
*/
|
||||
uint32
|
||||
size_t
|
||||
bh_vector_size(const Vector *vector);
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user