Changeset d2b5a7 in git


Ignore:
Timestamp:
Jun 3, 1998, 4:51:33 PM (26 years ago)
Author:
Wilfred Pohl <pohl@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
c513268331513b481e9cc2e6c0549b239f1da1e2
Parents:
96bd24778258d41ab72ef3e81841d32c2145140c
Message:
	* ftmpl_factor.h (template <class T> class Factor):
	  `operator == ( const Factor<T> &, const Factor<T> &)'
	  removed as friend and added as extra operator


git-svn-id: file:///usr/local/Singular/svn/trunk@2048 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/templates/ftmpl_factor.h

    r96bd24 rd2b5a7  
    11/* emacs edit mode for this file is -*- C++ -*- */
    2 /* $Id: ftmpl_factor.h,v 1.4 1997-06-19 13:11:15 schmidt Exp $ */
     2/* $Id: ftmpl_factor.h,v 1.5 1998-06-03 14:51:33 pohl Exp $ */
    33
    44#ifndef INCL_FACTOR_H
     
    3131    Factor<T>& operator*= ( int i ) { _exp *= i; return *this; }
    3232    Factor<T>& operator*= ( const T & f ) { _factor *= f; return *this; }
    33     friend int operator== ( const Factor<T>&, const Factor<T>& );
    3433#ifndef NOSTREAMIO
    3534    void print ( ostream& ) const;
    3635#endif /* NOSTREAMIO */
    3736};
     37
     38template <class T> int
     39operator== ( const Factor<T>&, const Factor<T>& );
    3840
    3941#ifndef NOSTREAMIO
Note: See TracChangeset for help on using the changeset viewer.