Changeset 22347b6 in git for factory/templates


Ignore:
Timestamp:
Jan 13, 2005, 4:10:23 PM (19 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
ed97c1a4f90e91f9dd72603636d0dc0dc3b843c8
Parents:
ba8f1aa4ead23e4ad82810c6d3b4f3e0749a7921
Message:
*hannes; gcc 3.4 fixes from Dan Grayson


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

Legend:

Unmodified
Added
Removed
  • factory/templates/ftmpl_list.h

    rba8f1a r22347b6  
    11/* emacs edit mode for this file is -*- C++ -*- */
    2 /* $Id: ftmpl_list.h,v 1.7 2001-06-18 11:33:14 Singular Exp $ */
     2/* $Id: ftmpl_list.h,v 1.8 2005-01-13 15:10:23 Singular Exp $ */
    33
    44#ifndef INCL_LIST_H
     
    1616template <class T>
    1717class List;
     18
     19#ifndef NOSTREAMIO
     20template <class T>
     21std::ostream& operator<< ( std::ostream &, const List<T> &);
     22#endif
    1823
    1924template <class T>
     
    6671#ifndef NOSTREAMIO
    6772    void print ( ostream & ) const;
    68     friend ostream& operator<< <>( ostream & os, const List<T> & l );
     73    friend ostream& operator<< <T>( ostream & os, const List<T> & l );
    6974#endif /* NOSTREAMIO */
    7075    friend class ListIterator<T>;
  • factory/templates/ftmpl_matrix.h

    rba8f1a r22347b6  
    11/* emacs edit mode for this file is -*- C++ -*- */
    2 /* $Id: ftmpl_matrix.h,v 1.8 2001-06-27 13:20:40 Singular Exp $ */
     2/* $Id: ftmpl_matrix.h,v 1.9 2005-01-13 15:10:23 Singular Exp $ */
    33
    44#ifndef INCL_MATRIX_H
     
    1313template <class T>
    1414class SubMatrix;
     15
     16template <class T>
     17class Matrix;
     18
     19#ifndef NOSTREAMIO
     20template <class T>
     21std::ostream& operator<< (std::ostream &, const Matrix<T> &);
     22#endif
    1523
    1624template <class T>
Note: See TracChangeset for help on using the changeset viewer.