Changeset 2206a71 in git


Ignore:
Timestamp:
Jun 5, 1997, 3:02:53 PM (26 years ago)
Author:
Jens Schmidt <schmidt@…>
Branches:
(u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
Children:
7989999536a1ee2f0fa5ad9f1b9e85d9b9460575
Parents:
4c001aeab70ceba5cf5bfcdef42079b63fe8bc72
Message:
o operator >>(): in case we are compiling with Singular but
  with stream IO enabled, return simply 0


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

Legend:

Unmodified
Added
Removed
  • factory/canonicalform.cc

    r4c001a r2206a71  
    11// emacs editmode for this file is -*- C++ -*-
    2 // $Id: canonicalform.cc,v 1.5 1997-04-18 13:10:30 schmidt Exp $
     2// $Id: canonicalform.cc,v 1.6 1997-06-05 13:02:53 schmidt Exp $
    33
    44/*
    55$Log: not supported by cvs2svn $
     6Revision 1.5  1997/04/18 13:10:30  schmidt
     7o mapinto(): mapping from immediate to GF(q) corrected
     8
    69Revision 1.4  1997/04/07 14:53:44  schmidt
    710#include <config.h> added
     
    10281031operator >> ( istream & is, CanonicalForm & cf )
    10291032{
     1033#ifndef SINGULAR
    10301034    cf = readCF( is );
    10311035    return is;
     1036#else /* SINGULAR */
     1037    return 0;
     1038#endif /* SINGULAR */
    10321039}
    10331040#endif /* NOSTREAMIO */
Note: See TracChangeset for help on using the changeset viewer.