Changeset 7d4ce2a for libcfa/src


Ignore:
Timestamp:
Dec 9, 2020, 11:06:39 PM (3 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
edf3ff1
Parents:
5992ff4
Message:

make collections publicly accessible in include directory

Location:
libcfa/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/Makefile.am

    r5992ff4 r7d4ce2a  
    1111## Created On       : Sun May 31 08:54:01 2015
    1212## Last Modified By : Peter A. Buhr
    13 ## Last Modified On : Mon Jun  1 13:35:33 2020
    14 ## Update Count     : 248
     13## Last Modified On : Wed Dec  9 22:46:14 2020
     14## Update Count     : 250
    1515###############################################################################
    1616
     
    5252        bits/defs.hfa \
    5353        bits/locks.hfa \
     54        bits/collection.hfa \
     55        bits/stack.hfa \
     56        bits/queue.hfa \
     57        bits/sequence.hfa \
    5458        concurrency/iofwd.hfa \
    5559        containers/list.hfa \
  • libcfa/src/bits/queue.hfa

    r5992ff4 r7d4ce2a  
    11#pragma once
    22
    3 #include "collection.hfa"
     3#include "bits/collection.hfa"
    44
    55forall( dtype T ) {
  • libcfa/src/bits/sequence.hfa

    r5992ff4 r7d4ce2a  
    11#pragma once
    22
    3 #include "collection.hfa"
     3#include "bits/collection.hfa"
    44
    55struct Seqable {
  • libcfa/src/bits/stack.hfa

    r5992ff4 r7d4ce2a  
    11#pragma once
    22
    3 #include "collection.hfa"
     3#include "bits/collection.hfa"
    44
    55forall( dtype T ) {
Note: See TracChangeset for help on using the changeset viewer.