~mdcallag/+junk/5.1-map

« back to all changes in this revision

Viewing changes to extra/yassl/taocrypt/include/modarith.hpp

  • Committer: msvensson at pilot
  • Date: 2007-04-24 09:11:45 UTC
  • mfrom: (2469.1.106)
  • Revision ID: sp1r-msvensson@pilot.blaudden-20070424091145-10463
Merge pilot.blaudden:/home/msvensson/mysql/my51-m-mysql_upgrade
into  pilot.blaudden:/home/msvensson/mysql/mysql-5.1-maint

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
    typedef int RandomizationParameter;
38
38
    typedef Integer Element;
39
39
 
40
 
    ModularArithmetic(const Integer &modulus_arg = Integer::One())
41
 
        : modulus(modulus_arg), result((word)0, modulus_arg.reg_.size()) {}
 
40
    ModularArithmetic(const Integer &modulus = Integer::One())
 
41
        : modulus(modulus), result((word)0, modulus.reg_.size()) {}
42
42
 
43
43
    ModularArithmetic(const ModularArithmetic &ma)
44
44
        : AbstractRing(),