Changeset d0502a3


Ignore:
Timestamp:
Feb 16, 2021, 1:28:31 PM (3 years ago)
Author:
Michael Brooks <mlbrooks@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
9fb1367, feacef9
Parents:
1830a86
Message:

Fixing function bodies in bits/containers and bits/sequence so they can coexist with declarations in vector Fixes #237?

libcfa/src/bits/* the fixes
libcfa/src/fstream.hfa adding the desired include, which wasn't possible under #237
tests/includes/* adding tests for these problematic combinations

Files:
7 added
3 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/bits/containers.hfa

    r1830a86 rd0502a3  
    151151                }
    152152
    153                 void append( __queue(T) & this, T * val ) with( this ) {
     153                void append( __queue(T) & this, T * val ) with(this) {
    154154                        verify(this.tail != 0p);
    155155                        verify(*this.tail == 1p);
     
    161161                T * peek( __queue(T) & this ) {
    162162                        verify(*this.tail == 1p);
    163                         T * front = this.head;
    164                         if( front != 1p ) {
     163                        T * frontnode = this.head;
     164                        if( frontnode != 1p ) {
    165165                                verify(*this.tail == 1p);
    166                                 return front;
     166                                return frontnode;
    167167                        }
    168168                        verify(*this.tail == 1p);
  • libcfa/src/bits/sequence.hfa

    r1830a86 rd0502a3  
    3030        // PUBLIC
    3131
    32         void ?{}( Seqable & sq ) with( sq ) {
     32        void ?{}( Seqable & sq ) {
    3333                ((Colable &)sq){};
    34                 back = 0p;
     34                sq.back = 0p;
    3535        } // post: ! listed()
    3636
  • libcfa/src/fstream.hfa

    r1830a86 rd0502a3  
    1616#pragma once
    1717
     18#include "bits/weakso_locks.hfa"
    1819#include "iostream.hfa"
    1920#include <exception.hfa>
     
    3435        char $separator[sepSize];
    3536        char $tupleSeparator[sepSize];
     37//      multiple_acquisition_lock lock;
    3638}; // ofstream
    3739
Note: See TracChangeset for help on using the changeset viewer.