Changeset 3fe8ed4 in git for factory


Ignore:
Timestamp:
Oct 27, 2008, 11:16:09 AM (16 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
3425c28defd1e45c8aacb598a943c2dfd616390f
Parents:
ad83e4fe7101dbe0763a36ab0bf774daa8c9e7db
Message:
*grayson: avoid compiler warnings about shadowing a global symbol


git-svn-id: file:///usr/local/Singular/svn/trunk@11160 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
factory
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • factory/cf_eval.h

    rad83e4 r3fe8ed4  
    11/* emacs edit mode for this file is -*- C++ -*- */
    2 /* $Id: cf_eval.h,v 1.5 2006-05-15 09:03:04 Singular Exp $ */
     2/* $Id: cf_eval.h,v 1.6 2008-10-27 10:16:09 Singular Exp $ */
    33
    44#ifndef INCL_CF_EVAL_H
     
    2727public:
    2828    Evaluation() : values() {}
    29     Evaluation( int min, int max ) : values( min, max ) {}
     29    Evaluation( int min0, int max0 ) : values( min0, max0 ) {}
    3030    Evaluation( const Evaluation & e ) : values( e.values ) {}
    3131    virtual ~Evaluation() {}
  • factory/cf_reval.h

    rad83e4 r3fe8ed4  
    11/* emacs edit mode for this file is -*- C++ -*- */
    2 /* $Id: cf_reval.h,v 1.6 2007-11-20 10:08:03 Singular Exp $ */
     2/* $Id: cf_reval.h,v 1.7 2008-10-27 10:16:09 Singular Exp $ */
    33
    44#ifndef INCL_CF_REVAL_H
     
    1919public:
    2020    REvaluation() : Evaluation(), gen(0) {}
    21     REvaluation( int min, int max, const CFRandom & sample ) : Evaluation( min, max ), gen( sample.clone() ) {}
     21    REvaluation( int min0, int max0, const CFRandom & sample ) : Evaluation( min0, max0 ), gen( sample.clone() ) {}
    2222    REvaluation( const REvaluation & e );
    2323    ~REvaluation();
Note: See TracChangeset for help on using the changeset viewer.