Changeset 2afec66 for src/tests/vector
- Timestamp:
- Jul 26, 2017, 5:24:33 PM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 25bd9074
- Parents:
- 8a6cf7e
- Location:
- src/tests/vector
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/tests/vector/vector_int.c
r8a6cf7e r2afec66 20 20 #define DEFAULT_CAPACITY 20 21 21 22 void ?{}( vector_int *vec ) {22 void ?{}( vector_int & vec ) { 23 23 vec { DEFAULT_CAPACITY }; 24 24 } 25 25 26 void ?{}( vector_int *vec, int reserve ) {27 vec ->last = -1;28 vec ->capacity = reserve;29 vec ->data = malloc( sizeof( int ) * reserve );26 void ?{}( vector_int & vec, int reserve ) { 27 vec.last = -1; 28 vec.capacity = reserve; 29 vec.data = malloc( sizeof( int ) * reserve ); 30 30 } 31 31 32 void ?{}( vector_int *vec, vector_int other ) {33 vec ->last = other.last;34 vec ->capacity = other.capacity;35 vec ->data = malloc( sizeof( int ) * other.capacity );36 for (int i = 0; i < vec ->last; i++) {37 vec ->data[i] = other.data[i];32 void ?{}( vector_int & vec, vector_int other ) { 33 vec.last = other.last; 34 vec.capacity = other.capacity; 35 vec.data = malloc( sizeof( int ) * other.capacity ); 36 for (int i = 0; i < vec.last; i++) { 37 vec.data[i] = other.data[i]; 38 38 } 39 39 } 40 40 41 void ^?{}( vector_int *vec ) {41 void ^?{}( vector_int & vec ) { 42 42 free( vec->data ); 43 43 } -
src/tests/vector/vector_int.h
r8a6cf7e r2afec66 25 25 } vector_int; 26 26 27 void ?{}( vector_int *); // allocate vector with default capacity28 void ?{}( vector_int *, int reserve ); // allocate vector with specified capacity29 void ?{}( vector_int *vec, vector_int other ); // copy constructor30 void ^?{}( vector_int *); // deallocate vector's storage27 void ?{}( vector_int & ); // allocate vector with default capacity 28 void ?{}( vector_int &, int reserve ); // allocate vector with specified capacity 29 void ?{}( vector_int & vec, vector_int other ); // copy constructor 30 void ^?{}( vector_int & ); // deallocate vector's storage 31 31 32 32 void reserve( vector_int *vec, int reserve ); // reserve more capacity
Note: See TracChangeset
for help on using the changeset viewer.