Show
Ignore:
Timestamp:
06/14/08 20:29:33 (5 months ago)
Author:
pernet
Message:

fix warnings and missing includes

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/linbox/linbox/field/modular-float.h

    r2950 r2970  
    285285                        // The extended Euclidean algoritm  
    286286                        int x_int, y_int, q, tx, ty, temp; 
    287                         x_int = (int) modulus; 
    288                         y_int = (int) y; 
     287                        x_int = int (modulus); 
     288                        y_int = int (y); 
    289289                        tx = 0;  
    290290                        ty = 1;