Changes in src/prelude/prelude.cf [0788b739:14f6bb39]
- File:
-
- 1 edited
-
src/prelude/prelude.cf (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/prelude/prelude.cf
r0788b739 r14f6bb39 131 131 !?( float _Complex ), !?( double _Complex ), !?( long double _Complex ); 132 132 133 forall ( dtype DT ) int !?( DT * ); 134 forall ( dtype DT ) int !?( const DT * ); 135 forall ( dtype DT ) int !?( volatile DT * ); 133 136 forall ( dtype DT ) int !?( const volatile DT * ); 134 137 forall ( ftype FT ) int !?( FT * ); … … 235 238 ?>?( long double, long double ), ?>=?( long double, long double ); 236 239 240 forall( dtype DT ) signed int ?<?( DT *, DT * ); 241 forall( dtype DT ) signed int ?<?( const DT *, const DT * ); 242 forall( dtype DT ) signed int ?<?( volatile DT *, volatile DT * ); 237 243 forall( dtype DT ) signed int ?<?( const volatile DT *, const volatile DT * ); 244 245 forall( dtype DT ) signed int ?>?( DT *, DT * ); 246 forall( dtype DT ) signed int ?>?( const DT *, const DT * ); 247 forall( dtype DT ) signed int ?>?( volatile DT *, volatile DT * ); 238 248 forall( dtype DT ) signed int ?>?( const volatile DT *, const volatile DT * ); 249 250 forall( dtype DT ) signed int ?<=?( DT *, DT * ); 251 forall( dtype DT ) signed int ?<=?( const DT *, const DT * ); 252 forall( dtype DT ) signed int ?<=?( volatile DT *, volatile DT * ); 239 253 forall( dtype DT ) signed int ?<=?( const volatile DT *, const volatile DT * ); 254 255 forall( dtype DT ) signed int ?>=?( DT *, DT * ); 256 forall( dtype DT ) signed int ?>=?( const DT *, const DT * ); 257 forall( dtype DT ) signed int ?>=?( volatile DT *, volatile DT * ); 240 258 forall( dtype DT ) signed int ?>=?( const volatile DT *, const volatile DT * ); 241 259
Note:
See TracChangeset
for help on using the changeset viewer.