Ignore:
Timestamp:
Aug 28, 2016, 11:02:06 PM (8 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, 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:
413ad05
Parents:
6d665d9 (diff), 4999940 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg2:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/containers/vector

    r6d665d9 r3f1e68f  
    1 // 
     1//
    22// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
    33//
    44// The contents of this file are covered under the licence agreement in the
    55// file "LICENCE" distributed with Cforall.
    6 // 
    7 // vector -- 
    8 // 
     6//
     7// vector --
     8//
    99// Author           : Thierry Delisle
    1010// Created On       : Tue Jul  5 18:00:07 2016
     
    1212// Last Modified On : Tue Jul  5 18:01:35 2016
    1313// Update Count     : 2
    14 // 
     14//
    1515
    1616#pragma once
     
    2828        void ctor(allocator_t* const);
    2929        void dtor(allocator_t* const);
    30         void realloc(allocator_t* const, size_t);
     30        void realloc_storage(allocator_t* const, size_t);
    3131        T* data(allocator_t* const);
    3232};
     
    6464static inline void reserve(vector(T, allocator_t) *const this, size_t size)
    6565{
    66         realloc(&this->storage, this->size+1);
     66        realloc_storage(&this->storage, this->size+1);
    6767}
    6868
     
    146146
    147147forall(otype T)
    148 void realloc(heap_allocator(T) *const this, size_t size);
     148void realloc_storage(heap_allocator(T) *const this, size_t size);
    149149
    150150forall(otype T)
Note: See TracChangeset for help on using the changeset viewer.