Changes in tests/rational.cfa [0087e0e:200fcb3]
- File:
-
- 1 edited
-
tests/rational.cfa (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tests/rational.cfa
r0087e0e r200fcb3 10 10 // Created On : Mon Mar 28 08:43:12 2016 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Mar 27 07:37:17 201913 // Update Count : 8012 // Last Modified On : Tue Dec 4 21:46:42 2018 13 // Update Count : 69 14 14 // 15 15 … … 19 19 #include <fstream.hfa> 20 20 21 // UNNECESSARY, FIX ME 22 void ?{}( int & this ) { this = 0; } 23 void ?{}( int & this, zero_t ) { this = 0; } 24 void ?{}( int & this, one_t ) { this = 1; } 21 25 double convert( int i ) { return (double)i; } 22 26 int convert( double d ) { return (int)d; } … … 54 58 sout | a * b; 55 59 sout | a / b; 56 // sout | a \ 2 | b \ 2; // FIX ME57 // sout | a \ -2 | b \ -2;58 60 59 61 sout | "conversion";
Note:
See TracChangeset
for help on using the changeset viewer.