Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/containers/vector.cfa

    raccc9df9 rfd54fef  
    1818#include <stdlib.hfa>
    1919
    20 #pragma GCC visibility push(default)
    21 
    2220forall(T, allocator_t | allocator_c(T, allocator_t))
    23 static void copy_internal(vector(T, allocator_t)* this, vector(T, allocator_t)* other);
     21void copy_internal(vector(T, allocator_t)* this, vector(T, allocator_t)* other);
    2422
    2523//------------------------------------------------------------------------------
     
    8583
    8684forall(T, allocator_t | allocator_c(T, allocator_t))
    87 static void copy_internal(vector(T, allocator_t)* this, vector(T, allocator_t)* other)
     85void copy_internal(vector(T, allocator_t)* this, vector(T, allocator_t)* other)
    8886{
    8987        this->size = other->size;
Note: See TracChangeset for help on using the changeset viewer.