Changes in src/libcfa/iostream [7bc4e6b:e1780a2]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/iostream
r7bc4e6b re1780a2 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu Aug 24 08:14:29201713 // Update Count : 13 312 // Last Modified On : Wed Aug 9 16:42:47 2017 13 // Update Count : 131 14 14 // 15 15 … … 117 117 }; // readable 118 118 119 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, char &);119 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, char * ); 120 120 121 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, short int &);122 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, unsigned short int &);123 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, int &);124 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, unsigned int &);125 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, long int &);126 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, long long int &);127 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, unsigned long int &);128 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, unsigned long long int &);121 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, short int * ); 122 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, unsigned short int * ); 123 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, int * ); 124 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, unsigned int * ); 125 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, long int * ); 126 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, long long int * ); 127 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, unsigned long int * ); 128 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, unsigned long long int * ); 129 129 130 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, float &);131 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, double &);132 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, long double &);130 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, float * ); 131 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, double * ); 132 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, long double * ); 133 133 134 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, float _Complex &);135 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, double _Complex &);136 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, long double _Complex &);134 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, float _Complex * ); 135 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, double _Complex * ); 136 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, long double _Complex * ); 137 137 138 138 struct _Istream_cstrUC { char * s; };
Note:
See TracChangeset
for help on using the changeset viewer.