Changeset ae42f2a
- Timestamp:
- Feb 25, 2016, 4:28:25 PM (9 years ago)
- 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
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/prelude.cf
ra172972 rae42f2a 810 810 forall( dtype DT ) void ?{}( const volatile DT * volatile *); 811 811 812 forall( dtype DT ) void ?{}( DT (*)[] ); // xxx - probably incomplete 813 forall( dtype DT ) void ?{}( const DT (*)[] ); 814 forall( dtype DT ) void ?{}( volatile DT (*)[] ); 815 forall( dtype DT ) void ?{}( const volatile DT (*)[] ); 816 812 817 void ?{}( void * *); 813 818 void ?{}( void * volatile *); … … 832 837 forall( dtype DT ) void ^?{}( const volatile DT * volatile *); 833 838 839 forall( dtype DT ) void ^?{}( DT (*) [] ); // xxx - probably incomplete 840 forall( dtype DT ) void ^?{}( const DT (*)[] ); 841 forall( dtype DT ) void ^?{}( volatile DT (*)[] ); 842 forall( dtype DT ) void ^?{}( const volatile DT (*)[] ); 843 844 834 845 void ^?{}( void * *); 835 846 void ^?{}( void * volatile *);
Note: See TracChangeset
for help on using the changeset viewer.