Changeset 4bef46 in git
- Timestamp:
- Jul 1, 1998, 10:06:27 AM (25 years ago)
- Branches:
- (u'spielwiese', '6e12f9861a9fbafef8cfe9d754bf74a7d483a67b')
- Children:
- ff8a6bf7c7be4f1ec1339de2dc55a8135db95d1a
- Parents:
- cc937f74e43377771c4c773fdfefeb95cc1928d3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/int_intdiv.cc
rcc937f7 r4bef46 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: int_intdiv.cc,v 1. 4 1998-06-12 14:36:04 schmidtExp $ */2 /* $Id: int_intdiv.cc,v 1.5 1998-07-01 08:06:27 pohl Exp $ */ 3 3 4 4 //{{{ docu … … 227 227 MP_INT dummy; 228 228 mpz_init( &dummy ); 229 #ifdef __MWERKS__ 230 mpz_mod_ui( &dummy, &thempi, tabs( intC ) ); 231 InternalCF * result = int2imm( mpz_get_ui( &dummy ) ); 232 #else 229 233 InternalCF * result = int2imm( mpz_mod_ui( &dummy, &thempi, tabs( intC ) ) ); 234 #endif 230 235 mpz_clear( &dummy ); 231 236 if ( deleteObject() ) delete this;
Note: See TracChangeset
for help on using the changeset viewer.