Changeset ae42f2a for src


Ignore:
Timestamp:
Feb 25, 2016, 4:28:25 PM (8 years ago)
Author:
Rob Schluntz <rschlunt@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
a9a259c
Parents:
a172972
Message:

added a few simple array ctors to prelude

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/prelude.cf

    ra172972 rae42f2a  
    810810forall( dtype DT ) void ?{}( const volatile  DT * volatile *);
    811811
     812forall( dtype DT ) void ?{}(          DT (*)[] ); // xxx - probably incomplete
     813forall( dtype DT ) void ?{}( const    DT (*)[] );
     814forall( dtype DT ) void ?{}( volatile DT (*)[] );
     815forall( dtype DT ) void ?{}( const volatile DT (*)[] );
     816
    812817void    ?{}(                void *          *);
    813818void    ?{}(                void * volatile *);
     
    832837forall( dtype DT ) void ^?{}( const volatile  DT * volatile *);
    833838
     839forall( dtype DT ) void ^?{}(        DT (*) [] ); // xxx - probably incomplete
     840forall( dtype DT ) void ^?{}( const    DT (*)[] );
     841forall( dtype DT ) void ^?{}( volatile DT (*)[] );
     842forall( dtype DT ) void ^?{}( const volatile DT (*)[] );
     843
     844
    834845void    ^?{}(               void *          *);
    835846void    ^?{}(               void * volatile *);
Note: See TracChangeset for help on using the changeset viewer.