Changeset 8710ff0 in git for factory/cf_inline.cc


Ignore:
Timestamp:
Sep 29, 2012, 1:49:36 PM (12 years ago)
Author:
Martin Lee <martinlee84@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
63e72b40a6237e50811b0e8745201177d25cb979
Parents:
d30a39922dc390f97b6cd257b2e7c55d483f4159
git-author:
Martin Lee <martinlee84@web.de>2012-09-29 13:49:36+02:00
git-committer:
Martin Lee <martinlee84@web.de>2012-10-19 11:05:30+02:00
Message:
chg: 64bit integers in factory by Adi Popescu
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/cf_inline.cc

    rd30a399 r8710ff0  
    121121CF_INLINE
    122122CanonicalForm::CanonicalForm ()
    123     : value( CFFactory::basic( (int)0 ) )
     123    : value( CFFactory::basic( (long)0 ) )
    124124{
    125125}
     
    140140CF_INLINE
    141141CanonicalForm::CanonicalForm ( const int i )
     142    : value( CFFactory::basic( (long)i ) )
     143{
     144}
     145
     146CF_INLINE
     147CanonicalForm::CanonicalForm ( const long i )
    142148    : value( CFFactory::basic( i ) )
    143149{
     
    300306//}}}
    301307CF_INLINE CanonicalForm &
    302 CanonicalForm::operator = ( const int cf )
     308CanonicalForm::operator = ( const long cf )
    303309{
    304310    if ( (! is_imm( value )) && value->deleteObject() )
Note: See TracChangeset for help on using the changeset viewer.