Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/sum.cfa

    r0e66857 ref346f7c  
    1111// Created On       : Wed May 27 17:56:53 2015
    1212// Last Modified By : Peter A. Buhr
    13 // Last Modified On : Sat Feb  9 15:38:48 2019
    14 // Update Count     : 293
     13// Last Modified On : Sun Dec 23 23:00:38 2018
     14// Update Count     : 287
    1515//
    1616
    1717#include <fstream.hfa>
    1818#include <stdlib.hfa>
     19
     20void ?{}( int & c, zero_t ) { c = 0; }                                  // not in prelude
    1921
    2022trait sumable( otype T ) {
     
    4244// Not in prelude.
    4345void ?{}( unsigned char & c, zero_t ) { c = 0; }
    44 void ?{}( int & i, zero_t ) { i = 0; }
    4546void ?{}( float & f, zero_t ) { f = 0.0; }
    4647void ?{}( double & d, zero_t ) { d = 0.0; }
Note: See TracChangeset for help on using the changeset viewer.