Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tests/rational.c

    r7bc4e6b ra933bcb3  
    1 //
     1// 
    22// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
    33//
    44// The contents of this file are covered under the licence agreement in the
    55// file "LICENCE" distributed with Cforall.
    6 //
     6// 
    77// rational.c -- test rational number package
    8 //
     8// 
    99// Author           : Peter A. Buhr
    1010// Created On       : Mon Mar 28 08:43:12 2016
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Aug 23 21:40:11 2017
    13 // Update Count     : 66
    14 //
     12// Last Modified On : Wed May 17 15:46:35 2017
     13// Update Count     : 65
     14// 
    1515
    1616#include <rational>
     
    2020
    2121// 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; }
     22void ?{}( int * this ) { *this = 0; }
     23void ?{}( int * this, zero_t ) { *this = 0; }
     24void ?{}( int * this, one_t ) { *this = 1; }
    2525double convert( int i ) { return (double)i; }
    2626int convert( double d ) { return (int)d; }
     
    9292        sout | x | endl;
    9393
    94         sin | a | b;
     94        sin | &a | &b;
    9595        sout | a | b | endl;
    9696} // main
Note: See TracChangeset for help on using the changeset viewer.