Ignore:
Timestamp:
Jul 26, 2017, 5:24:33 PM (7 years ago)
Author:
Rob Schluntz <rschlunt@…>
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
Message:

Update several tests for references

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tests/vector/vector_int.h

    r8a6cf7e r2afec66  
    2525} vector_int;
    2626
    27 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
     27void ?{}( vector_int & );                                                               // allocate vector with default capacity
     28void ?{}( vector_int &, int reserve );          // allocate vector with specified capacity
     29void ?{}( vector_int & vec, vector_int other ); // copy constructor
     30void ^?{}( vector_int & );                                                              // deallocate vector's storage
    3131
    3232void reserve( vector_int *vec, int reserve );                   // reserve more capacity
Note: See TracChangeset for help on using the changeset viewer.