Changeset 7d4ce2a
- Timestamp:
 - Dec 9, 2020, 11:06:39 PM (5 years ago)
 - 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
 - Files:
 - 
      
- 4 edited
 - 4 moved
 
- 
          
  libcfa/src/Makefile.am (modified) (2 diffs)
 - 
          
  libcfa/src/bits/queue.hfa (modified) (1 diff)
 - 
          
  libcfa/src/bits/sequence.hfa (modified) (1 diff)
 - 
          
  libcfa/src/bits/stack.hfa (modified) (1 diff)
 - 
          
  tests/multi_list.cfa (moved) (moved from libcfa/src/bits/multi_list.cfa )
 - 
          
  tests/queue.cfa (moved) (moved from libcfa/src/bits/queue_example.cfa )
 - 
          
  tests/sequence.cfa (moved) (moved from libcfa/src/bits/sequence_example.cfa )
 - 
          
  tests/stack.cfa (moved) (moved from libcfa/src/bits/stack_example.cfa )
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
libcfa/src/Makefile.am
r5992ff4 r7d4ce2a 11 11 ## Created On : Sun May 31 08:54:01 2015 12 12 ## Last Modified By : Peter A. Buhr 13 ## Last Modified On : Mon Jun 1 13:35:33202014 ## Update Count : 2 4813 ## Last Modified On : Wed Dec 9 22:46:14 2020 14 ## Update Count : 250 15 15 ############################################################################### 16 16 … … 52 52 bits/defs.hfa \ 53 53 bits/locks.hfa \ 54 bits/collection.hfa \ 55 bits/stack.hfa \ 56 bits/queue.hfa \ 57 bits/sequence.hfa \ 54 58 concurrency/iofwd.hfa \ 55 59 containers/list.hfa \  - 
      
libcfa/src/bits/queue.hfa
r5992ff4 r7d4ce2a 1 1 #pragma once 2 2 3 #include " collection.hfa"3 #include "bits/collection.hfa" 4 4 5 5 forall( dtype T ) {  - 
      
libcfa/src/bits/sequence.hfa
r5992ff4 r7d4ce2a 1 1 #pragma once 2 2 3 #include " collection.hfa"3 #include "bits/collection.hfa" 4 4 5 5 struct Seqable {  - 
      
libcfa/src/bits/stack.hfa
r5992ff4 r7d4ce2a 1 1 #pragma once 2 2 3 #include " collection.hfa"3 #include "bits/collection.hfa" 4 4 5 5 forall( dtype T ) {  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.