Changeset 2afec66 for src/tests/vector/vector_int.h
- Timestamp:
- Jul 26, 2017, 5:24:33 PM (8 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
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.